14 lines
298 B
YAML
14 lines
298 B
YAML
|
|
services:
|
|
frontend:
|
|
image: node:24.1.0-alpine3.22
|
|
# command: "sh -c '[ ! -d node_modules ] || npm install && npx run dev'"
|
|
command: sleep inf
|
|
working_dir: /app
|
|
volumes:
|
|
- ./frontend:/app
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
NEXT_TELEMETRY_DISABLED: 1
|
|
|