Skip to content

Instantly share code, notes, and snippets.

@pablohdzvizcarra
Created April 22, 2021 00:54
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 pablohdzvizcarra/6957f5740cd2431d0103c4eff6b172ad to your computer and use it in GitHub Desktop.
Save pablohdzvizcarra/6957f5740cd2431d0103c4eff6b172ad to your computer and use it in GitHub Desktop.
task-dockerfile
FROM node:lts-alpine3.13
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "run", "dev"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment