docker update
This commit is contained in:
parent
c6f8027ee7
commit
69d539312b
1 changed files with 4 additions and 2 deletions
|
@ -4,7 +4,9 @@ services:
|
||||||
app:
|
app:
|
||||||
image: node:23-alpine
|
image: node:23-alpine
|
||||||
container_name: learn-react
|
container_name: learn-react
|
||||||
working_dir: /root/
|
working_dir: /app/
|
||||||
|
volumes:
|
||||||
|
- .:/app
|
||||||
ports:
|
ports:
|
||||||
- "58701:4000"
|
- "58701:4000"
|
||||||
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"
|
command: sh -c "apk add --no-cache yarn && yarn install && yarn build && yarn global add serve && serve -s build -l 4000"
|
||||||
|
|
Loading…
Reference in a new issue