testssl.sh/Dockerfile.git

25 lines
733 B
Docker
Raw Permalink Normal View History

2021-08-09 13:45:33 +02:00
# Build using git repo
2023-10-13 17:38:09 +02:00
FROM alpine:3.18
2021-08-09 13:45:33 +02:00
ARG BUILD_VERSION
ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/
ARG URL=https://github.com/drwetter/testssl.sh.git
RUN test -n "${BUILD_VERSION}" \
&& apk update \
&& apk add --no-cache bash procps drill coreutils libidn curl openssl1.1-compat git \
2021-08-09 13:45:33 +02:00
&& git clone --depth 1 --branch ${BUILD_VERSION} $URL /home/testssl \
&& addgroup testssl \
&& adduser -G testssl -g "testssl user" -s /bin/bash -D testssl \
&& ln -s /home/testssl/testssl.sh /usr/local/bin/ \
&& mkdir -m 755 -p /home/testssl/etc /home/testssl/bin \
&& ln -s /usr/bin/openssl1.1 /usr/bin/openssl
2021-08-09 13:45:33 +02:00
USER testssl
WORKDIR /home/testssl/
2021-08-09 13:45:33 +02:00
ENTRYPOINT ["testssl.sh"]
CMD ["--help"]