Created
June 25, 2018 03:43
-
-
Save evaporei/4176f9a5231619570556ae2eb7a23fd6 to your computer and use it in GitHub Desktop.
graceful-shutdown/Dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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