fix: Add vendored dependencies to Dockerfile (#78285)

Add vendored dependencies to Dockerfile
pull/78352/head^2
Xavi Lacasa 2 years ago committed by GitHub
parent 893839d27b
commit 31dbf57aef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      Dockerfile

@ -48,6 +48,9 @@ WORKDIR /tmp/grafana
COPY go.* ./
COPY .bingo .bingo
# Include vendored dependencies
COPY pkg/util/xorm/go.* pkg/util/xorm/
RUN go mod download
RUN if [[ "$BINGO" = "true" ]]; then \
go install github.com/bwplotka/bingo@latest && \

Loading…
Cancel
Save