one/docker-compose.yml

15 lines
298 B
YAML
Raw Normal View History

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