Skip to content

Instantly share code, notes, and snippets.

@mikepfeiffer
Created December 26, 2018 19:42
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 mikepfeiffer/33ec8193282bf5b52ccad879324403f4 to your computer and use it in GitHub Desktop.
Save mikepfeiffer/33ec8193282bf5b52ccad879324403f4 to your computer and use it in GitHub Desktop.
Dockerfile for a bare bones Node & Express app
FROM node:alpine
WORKDIR /usr/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment