Skip to content

Commit

Permalink
moved dockerfile to top level
Browse files Browse the repository at this point in the history
  • Loading branch information
mmt456 committed Jul 19, 2024
1 parent 165aad4 commit f9aaa47
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM node:16

# Create app directory
WORKDIR /usr/src/app

# Install app dependencies
COPY package*.json ./

RUN npm install
# Bundle app source
COPY . .

EXPOSE 3000
CMD [ "npm", "start" ]

0 comments on commit f9aaa47

Please sign in to comment.