fix: docker image (#418)

This commit is contained in:
UUBulb
2024-09-02 23:19:43 +08:00
committed by GitHub
parent 8424c4e756
commit 3edfc8c14b
+4
View File
@@ -1,8 +1,12 @@
FROM alpine AS certs
RUN apk update && apk add ca-certificates
FROM busybox:stable-musl
ARG TARGETOS
ARG TARGETARCH
COPY --from=certs /etc/ssl/certs /etc/ssl/certs
COPY ./script/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh