https://github.com/drwetter/testssl.sh
Raw File
Tip revision: 5581499da5de0424c2d9eb713393d7a0474196d8 authored by Dirk Wetter on 02 April 2024, 09:15:12 UTC
Merge pull request #2487 from Tazmaniac/renego-fix3
Tip revision: 5581499
Dockerfile.git
# Build using git repo

FROM alpine:3.18

WORKDIR /home/testssl

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 git coreutils libidn curl socat openssl xxd \
    && 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

USER testssl

ENTRYPOINT ["testssl.sh"]

CMD ["--help"]
back to top