# 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"]