fix docker-compose

francisco/presentacion-svelte
Francisco Sandoval 2023-06-11 19:58:58 -04:00
parent c7fbdbe8fd
commit 60bc4738cb
1 changed files with 5 additions and 1 deletions

View File

@ -9,4 +9,8 @@ services:
volumes:
- ../:/app
working_dir: /app
command: npm run dev
command: >
sh -c "
[ -d node_modules ] || npm i ;
npm run dev
"