Skip to content

Instantly share code, notes, and snippets.

@hades2510
Created April 5, 2020 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hades2510/41de5a70162f5dd3fecdc60b6eb132f6 to your computer and use it in GitHub Desktop.
Save hades2510/41de5a70162f5dd3fecdc60b6eb132f6 to your computer and use it in GitHub Desktop.
Docker file for running a small node.js app
FROM node:12.16.1-alpine3.9
WORKDIR /app
COPY app/* /app/
RUN npm install
CMD node archive.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment