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

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" "{}" +
FROM scratch as package
COPY --from=install /rootfs /