Modify Dockerfile.git also, amending #2340

This commit is contained in:
Dirk Wetter 2023-03-19 22:57:58 +01:00
parent 8759ac61af
commit bf88b8b443

View File

@ -2,7 +2,6 @@
FROM alpine:3.17 FROM alpine:3.17
WORKDIR /home/testssl
ARG BUILD_VERSION ARG BUILD_VERSION
ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/ ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/
@ -10,7 +9,7 @@ ARG URL=https://github.com/drwetter/testssl.sh.git
RUN test -n "${BUILD_VERSION}" \ RUN test -n "${BUILD_VERSION}" \
&& apk update \ && apk update \
&& apk add --no-cache bash procps drill git coreutils libidn curl socat openssl xxd \ && apk add --no-cache bash procps drill coreutils libidn curl openssl1.1-compat git \
&& git clone --depth 1 --branch ${BUILD_VERSION} $URL /home/testssl \ && git clone --depth 1 --branch ${BUILD_VERSION} $URL /home/testssl \
&& addgroup testssl \ && addgroup testssl \
&& adduser -G testssl -g "testssl user" -s /bin/bash -D testssl \ && adduser -G testssl -g "testssl user" -s /bin/bash -D testssl \
@ -18,6 +17,7 @@ RUN test -n "${BUILD_VERSION}" \
&& mkdir -m 755 -p /home/testssl/etc /home/testssl/bin && mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
USER testssl USER testssl
WORKDIR /home/testssl/
ENTRYPOINT ["testssl.sh"] ENTRYPOINT ["testssl.sh"]