add dockerfile

This commit is contained in:
brent 2020-05-24 21:23:21 -04:00
parent cb4282999a
commit 6c877c9016
1 changed files with 20 additions and 0 deletions

20
Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM node:10-alpine
RUN mkdir -p /home/node/app/node_modules && chown -R node:node /home/node/app
WORKDIR /home/node/app
COPY ./src/ ./src/
COPY ./transcripts/ ./transcripts/
COPY package*.json ./
USER node
RUN npm config set strict-ssl false
RUN npm install
RUN npm config set strict-ssl true
RUN npm run build
COPY --chown=node:node . .
CMD ["npm", "start"]