Ajouter 'bob_party/Dockerfile'
continuous-integration/drone/push Build is passing Details

peristanceBDD
Thomas CHAZOT 2 years ago
parent 21b231d548
commit d3c83d08ac

@ -0,0 +1,19 @@
FROM node:latest
# Create app directory
WORKDIR /bob_party
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
RUN npm install
# If you are building your code for production
# RUN npm ci --only=production
# Bundle app source
COPY bob_party .
EXPOSE 8080
CMD [ "node", "server.js" ]
Loading…
Cancel
Save