Skip to content

Commit

Permalink
Add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfromer committed Nov 6, 2019
1 parent f4e3dc2 commit 7b4c545
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
@@ -0,0 +1,13 @@
FROM node:12.10.0

WORKDIR /app

COPY package.json /app
COPY package-lock.json /app
RUN npm ci

COPY . /app

EXPOSE 3001

CMD ["npm", "start"]

0 comments on commit 7b4c545

Please sign in to comment.