Skip to content

Instantly share code, notes, and snippets.

@unreadable
Created February 8, 2021 19:06
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 unreadable/c6d7d96a72f1e9442a3453eaa46d6f9c to your computer and use it in GitHub Desktop.
Save unreadable/c6d7d96a72f1e9442a3453eaa46d6f9c to your computer and use it in GitHub Desktop.
Simple Node docker config file
FROM node:14-slim
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment