Posted on

cbkh,n

# Dockerfile for service1
FROM node:14

WORKDIR /app

COPY package*.json ./
RUN npm install

COPY . .

CMD ["npm", "start"]