mirror of
https://github.com/jpillora/chisel
synced 2026-06-08 15:07:02 +00:00
22dc5db326
- Replace separate docker/build-push-action job with GoReleaser dockers - Merge release_binaries and release_docker into single release job - Publish multi-arch images to both GHCR and Docker Hub - Simplify Dockerfile to use pre-built binary from GoReleaser - Scope permissions properly (contents:write, packages:write) - Architectures: amd64, arm64, armv7, armv6, 386, ppc64le Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 lines
226 B
Docker
9 lines
226 B
Docker
FROM alpine:3 AS certs
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
FROM scratch
|
|
LABEL maintainer="dev@jpillora.com"
|
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY chisel /app/bin
|
|
ENTRYPOINT ["/app/bin"]
|