2023-09-01 23:01:45 +02:00
|
|
|
FROM alpine:3.18 as alpine
|
|
|
|
RUN apk add -U --no-cache ca-certificates
|
2023-09-01 22:59:37 +02:00
|
|
|
|
2023-09-01 23:01:45 +02:00
|
|
|
FROM scratch
|
2023-09-01 22:01:23 +02:00
|
|
|
WORKDIR /app
|
2023-09-01 23:01:45 +02:00
|
|
|
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
2023-09-01 22:01:23 +02:00
|
|
|
COPY ntfy-bridge /app/ntfy-bridge
|
|
|
|
ENTRYPOINT ["/app/ntfy-bridge"]
|