You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS builder
3
+
2
4
WORKDIR /build
3
5
4
-
RUN apk update && apk add upx
6
+
RUN apk update && apk add --no-cache upx
5
7
6
8
COPY . .
7
9
8
10
ARG VERSION=main
11
+
ARG TARGETOS
12
+
ARG TARGETARCH
13
+
ARG TARGETVARIANT
14
+
9
15
ENV GO111MODULE=on \
10
16
CGO_ENABLED=0 \
11
-
GOOS=linux
12
-
13
-
RUN go build -a -installsuffix cgo -ldflags="-w -s -X github.com/bakito/batch-job-controller/version.Version=${VERSION}" -o batch-job-controller cmd/generic/main.go && \
0 commit comments