From 8ba9d189335b5ca485e002f0a8bb82c13f5db1eb Mon Sep 17 00:00:00 2001 From: Bohdan Horbeshko Date: Mon, 18 Aug 2025 00:22:44 -0400 Subject: [PATCH] Remove unnecessary -t flag, it is for test dependencies only --- staging.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging.Dockerfile b/staging.Dockerfile index 95cdea5..ca5a7e6 100644 --- a/staging.Dockerfile +++ b/staging.Dockerfile @@ -27,7 +27,7 @@ RUN go env -w GOCACHE=/go-cache RUN go env -w GOMODCACHE=/gomod-cache RUN --mount=type=cache,target=/gomod-cache \ --mount=type=bind,source=./,target=/src,rw \ - /bin/bash -c 'go mod tidy; go get -t' + /bin/bash -c 'go mod tidy; go get' FROM cache AS build ARG MAKEOPTS