Mise à jour de 'bob_party/Dockerfile'
continuous-integration/drone/push Build is passing Details

peristanceBDD
Thomas CHAZOT 2 years ago
parent a33e92fbec
commit 0b98e57ec7

@ -1,7 +1,6 @@
FROM node:latest FROM node:latest
# Create app directory # Create app directory
WORKDIR /bob_party
# Install app dependencies # Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied # A wildcard is used to ensure both package.json AND package-lock.json are copied
@ -13,7 +12,8 @@ RUN yarn
# RUN npm ci --only=production # RUN npm ci --only=production
# Bundle app source # Bundle app source
COPY bob_party . COPY bob_party/server.js .
EXPOSE 8080 EXPOSE 8080
CMD [ "ls" ]
CMD [ "node", "server.js" ] CMD [ "node", "server.js" ]
Loading…
Cancel
Save