Skip to content

Commit

Permalink
docker image implemented and documented
Browse files Browse the repository at this point in the history
  • Loading branch information
Chmod351 committed Jun 27, 2023
1 parent 9714e59 commit 1eac5a7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM node:14

WORKDIR /app

COPY package.json .
WORKDIR /app/server
RUN npm install

WORKDIR /app
COPY . /app

CMD [ "npm", "start" ]

0 comments on commit 1eac5a7

Please sign in to comment.