Created
April 22, 2021 00:54
-
-
Save pablohdzvizcarra/6957f5740cd2431d0103c4eff6b172ad to your computer and use it in GitHub Desktop.
task-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: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