Skip to content
Snippets Groups Projects

Create endpoint for user-registration

1 file
+ 14
0
Compare changes
  • Side-by-side
  • Inline
+ 14
0
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
Loading