From 61863ff3c39da79716b0a94945b153e58a138ca6 Mon Sep 17 00:00:00 2001 From: Manjunath Kumatagi Date: Sat, 25 May 2024 14:28:38 +0530 Subject: [PATCH] Fix the linting error --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 44f2c27b..68a82973 100644 --- a/Containerfile +++ b/Containerfile @@ -1,6 +1,6 @@ FROM registry.fedoraproject.org/fedora:40 AS builder RUN dnf install -y git-core golang gpgme-devel libassuan-devel && mkdir -p /build/bib -COPY bib/go.mod bib/go.sum /build/bib +COPY bib/go.mod bib/go.sum /build/bib/ ARG GOPROXY=https://proxy.golang.org,direct RUN go env -w GOPROXY=$GOPROXY RUN cd /build/bib && go mod download