From f8440f2277eb0a7286b6e2fb50d95a3bad6600b5 Mon Sep 17 00:00:00 2001 From: musa-asad Date: Tue, 21 Jan 2025 05:49:35 -0500 Subject: [PATCH] temp --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7f8bf430..163970b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM golang:1.22 as builder # set goproxy=direct ENV GOPROXY direct +ENV GOINSECURE go.opencensus.io WORKDIR /workspace # Copy the Go Modules manifests @@ -10,8 +11,6 @@ COPY go.mod go.mod COPY go.sum go.sum # cache deps before building and copying source so that we don't need to re-download as much # and so that source changes don't invalidate our downloaded layer -RUN go get -v -d -t -insecure go.opencensus.io # temporary - RUN go mod download # Copy the go source