Skip to content

Instantly share code, notes, and snippets.

@tyteck
Last active April 15, 2022 13:03
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 tyteck/e8d0dd579a0e098193ae3071c52f4690 to your computer and use it in GitHub Desktop.
Save tyteck/e8d0dd579a0e098193ae3071c52f4690 to your computer and use it in GitHub Desktop.
npm install through docker-compose
version: '3.7'
services:
node:
image: node:13
restart: unless-stopped
command: "npm install"
working_dir: /app
volumes:
- ./:/app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment