Skip to content

Instantly share code, notes, and snippets.

@evaporei
Created June 25, 2018 03:43
Show Gist options
  • Save evaporei/4176f9a5231619570556ae2eb7a23fd6 to your computer and use it in GitHub Desktop.
Save evaporei/4176f9a5231619570556ae2eb7a23fd6 to your computer and use it in GitHub Desktop.
graceful-shutdown/Dockerfile
FROM node:alpine
COPY package.json package.json
COPY server.js server.js
RUN npm install
EXPOSE 8000
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment