Created
April 6, 2021 00:03
-
-
Save Jamp/33a3f4d07efa622ddb13b2a462567fda to your computer and use it in GitHub Desktop.
Dockerfile VueJS Desarrollo Local
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:latest | |
RUN mkdir -p /app | |
WORKDIR /app | |
COPY package*.json . | |
RUN npm install | |
COPY . . | |
EXPOSE 2000 | |
CMD ["npm", "run", "dev"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment