40 lines
1.3 KiB
Docker
40 lines
1.3 KiB
Docker
FROM alpine:3.12
|
|
|
|
ARG HTTP_PROXY=
|
|
ARG HTTPS_PROXY=
|
|
ARG http_proxy=
|
|
ARG https_proxy=
|
|
|
|
ARG TAMARIN_VERSION=develop
|
|
|
|
RUN apk add --no-cache git docker python3 bash openssl
|
|
|
|
ADD https://letsencrypt.org/certs/isrgrootx1.pem.txt /usr/local/share/ca-certificates/isrgrootx1.pem
|
|
ADD https://letsencrypt.org/certs/isrg-root-x2.pem /usr/local/share/ca-certificates/isrg-root-x2.pem
|
|
ADD https://letsencrypt.org/certs/trustid-x3-root.pem.txt /usr/local/share/ca-certificates/trustid-x3-root.pem
|
|
ADD https://letsencrypt.org/certs/letsencryptauthorityx3.pem /usr/local/share/ca-certificates/letsencryptauthorityx3.pem
|
|
|
|
RUN cd /usr/local/share/ca-certificates \
|
|
&& openssl x509 -in isrgrootx1.pem -inform PEM -out isrgrootx1.crt \
|
|
&& openssl x509 -in trustid-x3-root.pem -inform PEM -out trustid-x3-root.crt \
|
|
&& openssl x509 -in letsencryptauthorityx3.pem -inform PEM -out letsencryptauthorityx3.crt \
|
|
&& openssl x509 -in isrg-root-x2.pem -inform PEM -out isrg-root-x2.crt
|
|
|
|
RUN update-ca-certificates
|
|
|
|
RUN git clone http://forge.cadoles.com/Cadoles/Tamarin /tamarin\
|
|
&& cd /tamarin\
|
|
&& git checkout ${TAMARIN_VERSION}
|
|
|
|
RUN mkdir -p /src
|
|
RUN mkdir -p /dist && touch /dist/.dummy
|
|
|
|
VOLUME /tamarin
|
|
VOLUME /src
|
|
VOLUME /dist
|
|
|
|
ADD run-tamarin.sh /usr/local/bin/run-tamarin
|
|
RUN chmod +x /usr/local/bin/run-tamarin
|
|
|
|
CMD /usr/local/bin/run-tamarin
|