diff --git a/docker-compose.yml b/docker-compose.yml index 959dc1d..8630efd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,13 +4,7 @@ services: app: image: node:23-alpine container_name: learn-react - working_dir: /root/ReactLearn - volumes: - - ./app:/root/ReactLearn + working_dir: /root/ ports: - "58701:4000" - command: sh -c "apk add --no-cache yarn && yarn install && yarn build && yarn global add serve && serve -s build -l 4000" - -volumes: - app: - driver: local + command: sh -c "apk add --no-cache yarn git && git clone https://git.kagurach.uk/kagura/ReactLearn.git && cd ReactLearn && yarn install && yarn build && yarn global add serve && serve -s build -l 4000"