23 lines
515 B
Docker
23 lines
515 B
Docker
FROM golang:1.24 as build-stage
|
|
|
|
WORKDIR /src
|
|
ENV GO111MODULE=on CGO_ENABLED=0
|
|
|
|
COPY . .
|
|
|
|
ARG SOURCE
|
|
RUN go build \
|
|
-trimpath \
|
|
-ldflags "-s -w -extldflags '-static'" \
|
|
-tags netgo \
|
|
-o /bin/action \
|
|
$SOURCE/main.go
|
|
|
|
RUN strip /bin/action
|
|
|
|
FROM scratch
|
|
LABEL org.opencontainers.image.source=https://github.com/buildpacks/github-actions
|
|
COPY --from=build-stage /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
COPY --from=build-stage /bin/action /bin/action
|
|
ENTRYPOINT ["/bin/action"]
|