Don't install anything explicitly wanting python
All checks were successful
Build and Publish / build_and_publish (push) Successful in 4m4s

This commit is contained in:
Nexus 2024-06-12 00:36:43 +01:00
parent 82a6b4f026
commit bee6d06a1d
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -65,8 +65,6 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
git \ git \
whois \ whois \
curl \ curl \
python3-pip \
python3-virtualenv \
libmagic-dev libmagic-dev
# Install image dependencies # Install image dependencies
@ -74,7 +72,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ffmpeg \ ffmpeg \
imagemagick imagemagick
RUN virtualenv /app/venv RUN python3 -m venv /app/venv
RUN /app/venv/bin/pip install --upgrade --no-input pip wheel setuptools RUN /app/venv/bin/pip install --upgrade --no-input pip wheel setuptools
COPY requirements.txt /tmp/requirements.txt COPY requirements.txt /tmp/requirements.txt