From c5dfc72d84331d3f203d188197df3c18961182b5 Mon Sep 17 00:00:00 2001 From: Pedro Lacerda Date: Mon, 29 Aug 2022 18:45:29 +0200 Subject: [PATCH] FIX sed command on Dockerfile now has the correct path and makes changes inline --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ed899f..52d6c47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN python3 -m venv ./venv RUN . ./venv/bin/activate RUN ./venv/bin/pip install --upgrade pip setuptools RUN ./venv/bin/pip install -r ./requirements.txt -#RUN sed "s/python3.8/python$pyversion/g" prog_calc.wsgi +RUN sed -i "s/python3.8/python$pyversion/g" ../prog_calc.wsgi # Configure Apache USER root