Skip to content

Commit

Permalink
Merge pull request #3 from vlsi/fix_env
Browse files Browse the repository at this point in the history
chore: fix build failure: move go after environment vars
  • Loading branch information
alagishev authored Jan 17, 2025
2 parents 43f5b01 + 0e2cda7 commit ba54d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY qubership-apihub-service qubership-apihub-service

WORKDIR /workspace/qubership-apihub-service

RUN set GOSUMDB=off && set CGO_ENABLED=0 && go mod tidy && go mod download && go GOOS=${TARGETOS} GOARCH=${TARGETARCH} build .
RUN set GOSUMDB=off && set CGO_ENABLED=0 && go mod tidy && go mod download && GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build .

FROM docker.io/golang:1.23.4-alpine3.21

Expand Down

0 comments on commit ba54d12

Please sign in to comment.