Skip to content
Snippets Groups Projects
Commit 9be8f2bb authored by Matt Kirby's avatar Matt Kirby
Browse files

Added dockerfile

parent 1afe6826
No related branches found
No related tags found
1 merge request!27ALL Requirements done!!
FROM node:latest as base
# Create app directory
WORKDIR /comment-service-2/app
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
EXPOSE 9000
CMD [ "npm", "run", "start:dev" ]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment