-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathDockerfile
More file actions
27 lines (18 loc) · 742 Bytes
/
Copy pathDockerfile
File metadata and controls
27 lines (18 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# syntax=docker/dockerfile:1
FROM --platform=$BUILDPLATFORM golang:1.27.0-bookworm AS build
ARG TARGETOS
ARG TARGETARCH
WORKDIR /src
COPY go.mod go.sum ./
RUN go mod download && go mod verify
COPY . .
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH \
go build -trimpath -ldflags="-s -w" -o /out/getjs .
FROM scratch
LABEL org.opencontainers.image.source="https://github.com/003random/getJS" \
org.opencontainers.image.description="Extract JavaScript sources from URLs and HTTP responses" \
org.opencontainers.image.licenses="MIT"
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=build --chown=65532:65532 /out/getjs /getjs
USER 65532:65532
ENTRYPOINT ["/getjs"]