You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BOB_PARTY/Dockerfile

12 lines
196 B

FROM node:12.18.1
ENV NODE_ENV=production
WORKDIR /bob_party
COPY ["bob_party/package.json", "bob_party/package-lock.json*", "./"]
RUN npm install --production
COPY . .
CMD [ "npm", "start" ]