mirror of
https://github.com/selfhst/icons.git
synced 2026-01-12 20:47:37 +08:00
18 lines
293 B
Plaintext
Executable File
18 lines
293 B
Plaintext
Executable File
FROM golang:1.25-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY go.mod main.go ./
|
|
|
|
RUN CGO_ENABLED=0 go build -o server .
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=builder /app/server /server
|
|
|
|
USER 65534:65534
|
|
|
|
EXPOSE 4050
|
|
|
|
ENTRYPOINT ["/server"] |