Skip to content

Commit

Permalink
fix: add Dockerfile file
Browse files Browse the repository at this point in the history
  • Loading branch information
ximena9201 authored Oct 26, 2021
1 parent 29873b9 commit 01e600c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:16.12-alpine
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
COPY package-lock.json ./
RUN npm ci --silent
COPY . ./
RUN npm run build
CMD [ "node", "." ]

0 comments on commit 01e600c

Please sign in to comment.