Browse Source

FIX sed command on Dockerfile now has the correct path and makes changes inline

master
Pedro Lacerda 4 years ago
parent
commit
c5dfc72d84
  1. 2
      Dockerfile

2
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

Loading…
Cancel
Save