mirror of
https://github.com/Maks1mS/altlinux-autorepacked.git
synced 2025-01-11 15:08:08 +03:00
18 lines
379 B
Docker
18 lines
379 B
Docker
FROM registry.altlinux.org/alt/python:p10
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
eepm \
|
|
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}:."
|
|
|
|
CMD ["python3", "-u", "./autorepacked/main.py"] |