Remove build step in production [skip ci]

This commit is contained in:
Nicolas Meienberger 2022-07-18 21:41:10 +02:00
parent 4089962531
commit 607e84b49c
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ services:
api:
image: meienberger/runtipi:rc-${TIPI_VERSION}
command: /bin/sh -c "cd /api && npm run build && npm run start"
command: /bin/sh -c "cd /api && npm run start"
container_name: api
ports:
- 3001:3001

View file

@ -38,7 +38,7 @@ services:
api:
image: meienberger/runtipi:${TIPI_VERSION}
command: /bin/sh -c "cd /api && npm run build && npm run start"
command: /bin/sh -c "cd /api && npm run start"
restart: unless-stopped
container_name: api
ports: