Remove unnecessary -t flag, it is for test dependencies only

This commit is contained in:
Bohdan Horbeshko 2025-08-18 00:22:44 -04:00
parent 7463a56a7d
commit 8ba9d18933

View file

@ -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