File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 22
33FROM alpine:3.17
44
5- WORKDIR /home/testssl
65
76ARG BUILD_VERSION
87ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/
98ARG URL=https://github.com/drwetter/testssl.sh.git
109
1110RUN test -n "${BUILD_VERSION}" \
1211 && apk update \
13- && apk add --no-cache bash procps drill git coreutils libidn curl socat openssl xxd \
12+ && apk add --no-cache bash procps drill coreutils libidn curl openssl1.1-compat git \
1413 && git clone --depth 1 --branch ${BUILD_VERSION} $URL /home/testssl \
1514 && addgroup testssl \
1615 && adduser -G testssl -g "testssl user" -s /bin/bash -D testssl \
1716 && ln -s /home/testssl/testssl.sh /usr/local/bin/ \
1817 && mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
1918
2019USER testssl
20+ WORKDIR /home/testssl/
2121
2222ENTRYPOINT ["testssl.sh"]
2323
You can’t perform that action at this time.
0 commit comments