mirror of
https://github.com/adnanh/webhook.git
synced 2025-10-04 05:31:03 +00:00
8 lines
No EOL
244 B
Text
8 lines
No EOL
244 B
Text
FROM alpine:3.15.0 as certs
|
|
RUN apk --update add ca-certificates
|
|
|
|
FROM scratch
|
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
COPY webhook /usr/bin/webhook
|
|
EXPOSE 8345/tcp
|
|
ENTRYPOINT ["/usr/bin/webhook"] |