Last active
February 19, 2022 14:17
-
-
Save lucianobragaweb/3131dfdc8c4f3b786dce8e947d0423e6 to your computer and use it in GitHub Desktop.
Docker file for Vue.js
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
node_modules |
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
version: "2" | |
services: | |
node: | |
image: "node:8" | |
working_dir: /app | |
volumes: | |
- ./:/app | |
expose: | |
- "8080" | |
ports: | |
- "8080:8080" | |
command: "npm start" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment