mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-09-06 03:52:54 +02:00
Fix the Dockerfile env (hopefully)
* Upgrade both GHCR and Docker hub foile to alpine 3.2 * uses openssl version 3.3 as a alternative to option (default is still "ours" * docker 3.0 yml hast now ubuntu-22.04 (not EOL) + "latest" omitted
This commit is contained in:
@ -1,6 +1,8 @@
|
||||
# Build using git repo
|
||||
|
||||
FROM alpine:3.18
|
||||
FROM alpine:3.20
|
||||
|
||||
WORKDIR /home/testssl
|
||||
|
||||
ARG BUILD_VERSION
|
||||
ARG ARCHIVE_URL=https://github.com/drwetter/testssl.sh/archive/
|
||||
@ -8,16 +10,14 @@ 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 \
|
||||
&& git clone --depth 1 --branch ${BUILD_VERSION} $URL /home/testssl \
|
||||
&& apk add --no-cache bash procps drill coreutils libidn curl openssl git \
|
||||
&& 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
|
||||
&& mkdir -m 755 -p /home/testssl/etc /home/testssl/bin
|
||||
|
||||
USER testssl
|
||||
WORKDIR /home/testssl/
|
||||
|
||||
ENTRYPOINT ["testssl.sh"]
|
||||
|
||||
|
Reference in New Issue
Block a user