From 5da7b823e1a8e601f80195ad1c90fb1e130725db Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 31 Aug 2022 15:24:13 +0100 Subject: [PATCH] switch to python 3.9 because filprofiler does not support 3.10 and is needed for memory profiling --- docker-configs/Dockerfile-proxy | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker-configs/Dockerfile-proxy b/docker-configs/Dockerfile-proxy index 3bbc63c..11c2bcd 100644 --- a/docker-configs/Dockerfile-proxy +++ b/docker-configs/Dockerfile-proxy @@ -15,7 +15,9 @@ # along with this program; if not, write to the Free Software Foundation, # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ############################################################################### -FROM python:3.10-alpine + +#Fil does not support 3.10 yet +FROM python:3.9-alpine ENTRYPOINT [ "/entrypoint" ] @@ -27,7 +29,7 @@ RUN adduser -D -u 54000 radio && \ cd /opt/freedmr && \ git checkout debug && \ pip install filprofiler && \ - pip install --no-cache-dir -r requirements.txt && \ + pip install --no-cache-dir -r requirements.txt && \ apk del git gcc musl-dev && \ chown -R radio: /opt/freedmr