2023-03-22 09:18:36 +01:00
|
|
|
# syntax=docker.io/docker/dockerfile:1
|
2023-03-22 09:31:34 +01:00
|
|
|
|
2023-03-22 09:18:36 +01:00
|
|
|
ARG LEAP_VERSION=15.4
|
|
|
|
ARG INSTALL_ROOT=/rootfs
|
2017-03-30 13:18:46 +02:00
|
|
|
|
2023-03-22 09:18:36 +01:00
|
|
|
FROM opensuse/leap:${LEAP_VERSION} as builder
|
2023-03-22 09:31:34 +01:00
|
|
|
ARG CACHE_ZYPPER=/tmp/cache/zypper
|
2023-03-22 09:18:36 +01:00
|
|
|
ARG INSTALL_ROOT
|
2023-03-22 10:56:59 +01:00
|
|
|
# /etc/os-release provides $VERSION_ID
|
|
|
|
RUN source /etc/os-release \
|
|
|
|
&& export ZYPPER_OPTIONS=( --releasever "${VERSION_ID}" --installroot "${INSTALL_ROOT}" --cache-dir "${CACHE_ZYPPER}" ) \
|
|
|
|
&& zypper "${ZYPPER_OPTIONS[@]}" --gpg-auto-import-keys refresh \
|
|
|
|
&& zypper "${ZYPPER_OPTIONS[@]}" --non-interactive install --download-in-advance --no-recommends \
|
2023-03-22 10:13:18 +01:00
|
|
|
bash procps grep gawk sed coreutils busybox-util-linux busybox-vi ldns libidn2-0 socat openssl curl \
|
2023-03-22 10:56:59 +01:00
|
|
|
&& zypper "${ZYPPER_OPTIONS[@]}" clean --all
|
2023-03-22 10:13:18 +01:00
|
|
|
## Cleanup (reclaim approx 13 MiB):
|
|
|
|
# None of this content should be relevant to the container:
|
|
|
|
RUN rm -r "${INSTALL_ROOT}/usr/share/"{licenses,man,locale,doc,help,info}
|
|
|
|
# Functionality that the container doesn't need:
|
2023-03-22 10:56:59 +01:00
|
|
|
RUN rm "${INSTALL_ROOT}/usr/share/misc/termcap" \
|
2023-03-22 10:13:18 +01:00
|
|
|
&& rm -r "${INSTALL_ROOT}/usr/lib/sysimage/rpm"
|
2023-03-22 09:18:36 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Create a new image with the contents of $INSTALL_ROOT
|
|
|
|
FROM scratch
|
|
|
|
ARG INSTALL_ROOT
|
|
|
|
COPY --link --from=builder ${INSTALL_ROOT} /
|
2023-03-22 10:13:18 +01:00
|
|
|
# Create user + (home with SGID set):
|
|
|
|
RUN echo 'testssl:x:1000:1000::/home/testssl:/bin/bash' >> /etc/passwd \
|
|
|
|
&& echo 'testssl:x:1000:' >> /etc/group \
|
|
|
|
&& echo 'testssl:!::0:::::' >> /etc/shadow \
|
|
|
|
&& install --mode 2755 --owner testssl --group testssl --directory /home/testssl \
|
|
|
|
&& ln -s /home/testssl/testssl.sh /usr/local/bin/
|
2017-03-30 13:18:46 +02:00
|
|
|
|
2023-01-31 07:58:17 +01:00
|
|
|
# Copy over build context (after filtered by .dockerignore): bin/ etc/ testssl.sh
|
2023-02-07 09:36:47 +01:00
|
|
|
COPY --chown=testssl:testssl . /home/testssl/
|
2023-03-22 09:16:50 +01:00
|
|
|
USER testssl
|
2018-02-08 21:06:19 +01:00
|
|
|
ENTRYPOINT ["testssl.sh"]
|
2017-03-30 14:41:46 +02:00
|
|
|
CMD ["--help"]
|