Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
aliscott committed Aug 3, 2020
1 parent 3c58cb7 commit d105b29
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:13-alpine

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY package*.json /usr/src/app/
RUN npm install --production

COPY . /usr/src/app

EXPOSE 4000

CMD ["npm", "start"]

0 comments on commit d105b29

Please sign in to comment.