fix: use versioned python3 instead of python

This commit is contained in:
jo 2023-01-13 15:22:05 +01:00
commit efbdc027ab
No known key found for this signature in database
GPG key ID: B2FEC9B22722B984
26 changed files with 122 additions and 122 deletions

View file

@ -41,7 +41,7 @@ RUN set -eux; \
python3-dev
# create virtual env for next stage
RUN python -m venv --system-site-packages /venv
RUN python3 -m venv --system-site-packages /venv
# emulate activation by prefixing PATH
ENV PATH="/venv/bin:/root/.local/bin:$PATH" VIRTUAL_ENV=/venv