From 3d032cc68bb7fbed383c2df512f364f54eadb682 Mon Sep 17 00:00:00 2001 From: James Swineson Date: Tue, 13 Jun 2023 22:36:22 +0800 Subject: [PATCH] fix prod base image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c8225f9..d605f00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ LABEL image="ripe-atlas-artifacts" COPY --from=builder /root/atlasswprobe-*.deb / ## the actual image -FROM debian:stable-slim +FROM debian:10-slim LABEL maintainer="dockerhub@public.swineson.me" LABEL image="ripe-atlas" ARG DEBIAN_FRONTEND=noninteractive @@ -55,7 +55,7 @@ RUN ln -s /bin/true /bin/systemctl \ && groupadd --force --system --gid $ATLAS_GID atlas \ && usermod -aG atlas atlas \ && apt-get update -y \ - && apt-get install -y libcap2-bin libssl1.1 iproute2 openssh-client procps net-tools gosu \ + && apt-get install -y libcap2-bin iproute2 openssh-client procps net-tools gosu \ && dpkg -i /tmp/atlasswprobe-*.deb \ && apt-get install -fy \ && rm -rf /var/lib/apt/lists/* \