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