This repository has been archived on 2024-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
stagex/ca-certificates/Dockerfile

10 lines
230 B
Docker
Raw Normal View History

2023-12-16 23:50:40 +00:00
FROM ${REGISTRY}/busybox:latest as base
FROM base as install
USER 0:0
COPY cacert.pem /rootfs/etc/ssl/certs/ca-certificates.crt
RUN find /rootfs -exec touch -hcd "@0" "{}" +
2023-12-12 17:45:39 +00:00
FROM scratch as package
2023-12-16 23:50:40 +00:00
COPY --from=install /rootfs /