diff --git a/docker-compose.yml b/docker-compose.yml index 9ec3755..ffee1bf 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ services: image: node:24.1.0-alpine3.22 restart: unless-stopped tty: true - command: "sh -c '[ ! -d node_modules ] || npm install && npm run dev'" + command: "sh -c '[ -d node_modules ] || npm install && npm run dev'" working_dir: /app volumes: - ./frontend:/app