butterrobot/Containerfile
Felipe M. a6b1b8fd3e
Some checks failed
ci/woodpecker/tag/release Pipeline failed
fix: containerfile missing ca-certs
2025-04-21 15:53:40 +02:00

10 lines
345 B
Docker

# This file is used directly by the goreleaser build
# It is used to build the final container image
FROM golang:alpine as build
RUN apk --no-cache --update add ca-certificates
FROM scratch
WORKDIR /
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY /butterrobot /usr/bin/butterrobot
ENTRYPOINT ["/usr/bin/butterrobot"]