From e779719909dd4ebf7eb4571f3347ddf75bb253bb Mon Sep 17 00:00:00 2001 From: FooBallZ Date: Fri, 24 Apr 2020 20:00:50 +0200 Subject: [PATCH 1/3] fix for #29 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2418b10..16922ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,8 @@ RUN chmod 0600 /etc/ssh/sandbox_key #RUN apt-get update && apt-get install -y nginx python3-dev apache2-utils libexpat1 netcat less screen \ # openssl libmariadb-dev libcurl4-openssl-dev libssl-dev gcc +RUN apt-mark hold libgnutls30=3.6.7-4+deb10u2 # compability fix for #29 + RUN apt-get update && apt-get install -y libcurl4=7.64.0-4+deb10u1 libpython3.7-minimal=3.7.3-2+deb10u1 \ libcurl4-openssl-dev=7.64.0-4+deb10u1 python3.7-minimal=3.7.3-2+deb10u1 python3-minimal=3.7.3-1 mime-support=3.62 \ libmpdec2=2.4.2-2 libpython3.7-stdlib=3.7.3-2+deb10u1 python3.7=3.7.3-2+deb10u1 libpython3-stdlib=3.7.3-1 \ From 2df3f9b53e9645841ed477fb8f84bf4e939d73ca Mon Sep 17 00:00:00 2001 From: FooBallZ Date: Sat, 25 Apr 2020 15:19:55 +0200 Subject: [PATCH 2/3] apt fix for #29 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 16922ff..63d161e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8.2-slim-buster +FROM python:3.8.2-buster ENV PYTHONUNBUFFERED 1 COPY secrets_storage/sandbox_key /etc/ssh/sandbox_key @@ -9,7 +9,7 @@ RUN chmod 0600 /etc/ssh/sandbox_key RUN apt-mark hold libgnutls30=3.6.7-4+deb10u2 # compability fix for #29 -RUN apt-get update && apt-get install -y libcurl4=7.64.0-4+deb10u1 libpython3.7-minimal=3.7.3-2+deb10u1 \ +RUN apt-get update && apt-get install -y --allow-downgrades libssl1.1=1.1.1d-0+deb10u2 libgnutls30=3.6.7-4+deb10u2 libcurl4=7.64.0-4+deb10u1 libpython3.7-minimal=3.7.3-2+deb10u1 \ libcurl4-openssl-dev=7.64.0-4+deb10u1 python3.7-minimal=3.7.3-2+deb10u1 python3-minimal=3.7.3-1 mime-support=3.62 \ libmpdec2=2.4.2-2 libpython3.7-stdlib=3.7.3-2+deb10u1 python3.7=3.7.3-2+deb10u1 libpython3-stdlib=3.7.3-1 \ python3=3.7.3-1 less=487-0.1+b1 sensible-utils=0.0.12 bzip2=1.0.6-9.2~deb10u1 libmagic-mgc=1:5.35-4+deb10u1 \ From 223d06aac8aac099e537f3ab3cddd2b509613e62 Mon Sep 17 00:00:00 2001 From: FooBallZ Date: Sat, 25 Apr 2020 15:20:19 +0200 Subject: [PATCH 3/3] apt fix for #29 --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 63d161e..38ae822 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,6 @@ RUN chmod 0600 /etc/ssh/sandbox_key #RUN apt-get update && apt-get install -y nginx python3-dev apache2-utils libexpat1 netcat less screen \ # openssl libmariadb-dev libcurl4-openssl-dev libssl-dev gcc -RUN apt-mark hold libgnutls30=3.6.7-4+deb10u2 # compability fix for #29 - RUN apt-get update && apt-get install -y --allow-downgrades libssl1.1=1.1.1d-0+deb10u2 libgnutls30=3.6.7-4+deb10u2 libcurl4=7.64.0-4+deb10u1 libpython3.7-minimal=3.7.3-2+deb10u1 \ libcurl4-openssl-dev=7.64.0-4+deb10u1 python3.7-minimal=3.7.3-2+deb10u1 python3-minimal=3.7.3-1 mime-support=3.62 \ libmpdec2=2.4.2-2 libpython3.7-stdlib=3.7.3-2+deb10u1 python3.7=3.7.3-2+deb10u1 libpython3-stdlib=3.7.3-1 \