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

Added dockerfile for user-service

parent 857d7b37
No related branches found
No related tags found
1 merge request!9Create endpoint for user-registration
This commit is part of merge request !9. Comments created here will be created in the context of that merge request.
FROM node:latest as base
# Create app directory
WORKDIR /user-service/app
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
EXPOSE 9000
CMD [ "npm", "run", "start" ]
\ 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