34 lines
2.2 KiB
Docker
34 lines
2.2 KiB
Docker
FROM alpine:3.18.3
|
|
LABEL maintainer="Haitao Pan <manbuzhe2009@qq.com>"
|
|
|
|
ARG GLIBC_VERSION=2.34-r0
|
|
|
|
# install glibc compatibility for alpine
|
|
RUN apk add --update --no-cache curl binutils \
|
|
&& curl -sL https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o /etc/apk/keys/sgerrand.rsa.pub \
|
|
&& curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-${GLIBC_VERSION}.apk \
|
|
&& curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-bin-${GLIBC_VERSION}.apk \
|
|
&& curl -sLO https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-i18n-${GLIBC_VERSION}.apk \
|
|
&& apk add --no-cache --force-overwrite \
|
|
glibc-${GLIBC_VERSION}.apk \
|
|
glibc-bin-${GLIBC_VERSION}.apk \
|
|
glibc-i18n-${GLIBC_VERSION}.apk \
|
|
&& apk fix --force-overwrite alpine-baselayout-data \
|
|
&& /usr/glibc-compat/bin/localedef -i en_US -f UTF-8 en_US.UTF-8 \
|
|
&& rm -rf glibc-*.apk \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
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 && \
|
|
update-ca-certificates
|
|
|
|
ENTRYPOINT ["bash"]
|