This commit is contained in:
Julien Valverdé
2025-09-17 00:45:40 +02:00
parent 33d78259ee
commit 1a4a11a552
4 changed files with 11 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ services:
webapp:
<<: *service-base
image: oven/bun:latest
image: node:20
ports:
- ${PORT:?PORT missing}:80
volumes:
@@ -43,7 +43,7 @@ services:
working_dir: /app/packages/webapp
environment:
<<: *env-base
entrypoint: ["bun", "dev"]
entrypoint: ["npm", "run", "dev"]
stop_signal: SIGKILL
tempo: