We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63bd06d commit 2adbe07Copy full SHA for 2adbe07
docker-compose.yaml
@@ -5,8 +5,9 @@ services:
5
dockerfile: Dockerfile
6
volumes:
7
- ./:/app
8
- - go-cache:/root/.cache/go-build
9
- - go-mod-cache:/root/go/pkg/mod
+ - go-cache:/root/.cache/go-build/
+ - go-mod-cache:/root/go/pkg/mod/
10
+ - node_modules:/app/node_modules/
11
working_dir: /app
12
command: bash -c "cd /app && npm ci && GOFLAGS=-buildvcs=false mage -v build:Backend && npm run build"
13
@@ -54,6 +55,7 @@ services:
54
55
56
57
- .:/app
58
+ - node_modules:/app/node_modules
59
60
ports:
61
- "8080:8080"
@@ -93,3 +95,4 @@ services:
93
95
94
96
go-cache:
97
go-mod-cache:
98
+ node_modules:
0 commit comments