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 e8b049a commit 47fc790Copy full SHA for 47fc790
builder/Dockerfile
@@ -28,3 +28,6 @@ RUN nvm use 20
28
RUN apt-get install -y golang-go
29
RUN go install github.com/magefile/mage@latest
30
RUN cp /root/go/bin/mage /usr/local/bin/mage
31
+
32
+ENV GO111MODULE=on
33
+ENV GOPROXY=https://proxy.golang.org
docker-compose.yaml
@@ -8,7 +8,7 @@ services:
8
- go-cache:/root/.cache/go-build
9
- go-mod-cache:/go/pkg/mod
10
working_dir: /app
11
- command: bash -c "cd /app && mage -v && npm install && npm run build"
+ command: bash -c "cd /app && go mod download && mage -v && npm install && npm run build"
12
13
grafana:
14
user: root
0 commit comments