From 31dbf57aeff0913dfa9a810328afc4c1256974df Mon Sep 17 00:00:00 2001 From: Xavi Lacasa <114113189+volcanonoodle@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:38:46 +0100 Subject: [PATCH] fix: Add vendored dependencies to Dockerfile (#78285) Add vendored dependencies to Dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index f39cf43c80f..ec439e8b9b0 100644 --- a/Dockerfile +++ b/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 && \