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.
|
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 /
|