Microservice template

This commit is contained in:
2021-11-11 01:26:48 -05:00
parent 454f0b2426
commit a1ca5d3865
14 changed files with 3440 additions and 0 deletions
@@ -0,0 +1,14 @@
FROM node:boron
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install
COPY . /usr/src/app
CMD [ "npm", "start" ]