smtp2shoutrrr/Containerfile
Felipe M. a0eb52520d
Some checks failed
ci/woodpecker/tag/release Pipeline failed
fix: containerfile not including certs
2025-01-27 21:02:31 +01:00

10 lines
338 B
Docker

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