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
194 B

FROM node:12.18.1
ENV NODE_ENV=production
2 years ago
WORKDIR /app
2 years ago
COPY ["bob_party/package.json", "bob_party/package-lock.json*", "."]
2 years ago
RUN npm install --production
2 years ago
COPY . .
2 years ago
CMD [ "node", "server.js" ]