ReactLearn/docker-compose.yml

11 lines
284 B
YAML
Raw Permalink Normal View History

2024-11-17 06:11:04 +01:00
services:
app:
image: node:23-alpine
container_name: learn-react
2024-11-17 07:24:15 +01:00
working_dir: /app/
volumes:
- .:/app
2024-11-17 06:11:04 +01:00
ports:
- "58701:4000"
2024-11-17 07:24:15 +01:00
command: sh -c "apk add --no-cache yarn && yarn install && yarn build && yarn global add serve && serve -s build -l 4000"