Chore: Add missing build elements to Dockerfile (#89714)

Several go.* files that are referenced in go.work were missing in Dockerfile.
This commit is contained in:
Andreas Zilly 2024-06-26 21:22:37 +02:00 committed by GitHub
parent e121e2609f
commit f894c22b21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -57,8 +57,10 @@ COPY .bingo .bingo
COPY pkg/util/xorm/go.* pkg/util/xorm/
COPY pkg/apiserver/go.* pkg/apiserver/
COPY pkg/apimachinery/go.* pkg/apimachinery/
COPY pkg/build/go.* pkg/build/
COPY pkg/build/wire/go.* pkg/build/wire/
COPY pkg/promlib/go.* pkg/promlib/
COPY pkg/storage/unified/resource/go.* pkg/storage/unified/resource/
RUN go mod download
RUN if [[ "$BINGO" = "true" ]]; then \