Skip to content

Instantly share code, notes, and snippets.

@Jamp
Created April 6, 2021 00:03
Show Gist options
  • Save Jamp/33a3f4d07efa622ddb13b2a462567fda to your computer and use it in GitHub Desktop.
Save Jamp/33a3f4d07efa622ddb13b2a462567fda to your computer and use it in GitHub Desktop.
Dockerfile VueJS Desarrollo Local
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