artifacts/oci/base/alpine/Dockerfile

20 lines
1.3 KiB
Docker
Raw Permalink Normal View History

2023-08-08 11:37:12 +08:00
FROM alpine:3.18.3
2023-08-08 11:08:11 +08:00
MAINTAINER shenlan manbuzhe2009@qq.com
2023-02-15 16:32:57 +08:00
2023-08-08 11:58:55 +08:00
USER root
2023-08-08 11:08:11 +08:00
RUN apk add --no-cache curl ca-certificates
RUN cd /usr/local/share/ca-certificates/ && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20Root%20CA%201.crt -o RocheRootCA1.cer && \
curl -k https://certinfo.roche.com/rootcerts/RocheEnterpriseCA1.crt -o RocheEnterpriseCA1.cer && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20Root%20CA%201%20-%20G2.crt -o RocheRootCA1-G2.cer.cer && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20Enterprise%20CA%201%20-%20G2.crt -o RocheEnterpriseCA1-G2.crt && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20G3%20Root%20CA.crt -o RocheG3RootCA.crt && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20G3%20Issuing%20CA%201.crt -o RocheG3IssuingCA1.crt && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20G3%20Issuing%20CA%202.crt -o RocheG3IssuingCA2.crt && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20G3%20Issuing%20CA%203.crt -o RocheG3IssuingCA3.crt && \
curl -k https://certinfo.roche.com/rootcerts/Roche%20G3%20Issuing%20CA%204.crt -o RocheG3IssuingCA4.crt && \
2023-06-14 16:39:33 +08:00
update-ca-certificates
2023-08-08 10:35:01 +08:00
2023-02-15 16:32:57 +08:00
ENTRYPOINT [ "/bin/sh" ]