This commit is contained in:
2024-01-16 22:46:39 +03:00
parent 233c11efec
commit 657c424bf1
4 changed files with 69 additions and 12 deletions

View File

@@ -2,9 +2,15 @@ FROM registry.altlinux.org/alt/python:p10
RUN apt-get update && apt-get install -y \
eepm \
wget
wget \
apt-repo-tools \
alien \
pip
# && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip --no-cache-dir install -r requirements.txt
COPY ./autorepacked ./autorepacked
ENV PYTHONPATH "${PYTHONPATH}:."