This commit is contained in:
2024-01-16 17:32:13 +03:00
commit 250fe07bf0
9 changed files with 181 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM registry.altlinux.org/alt/python:p10
RUN apt-get update && apt-get install -y \
eepm \
wget
# && rm -rf /var/lib/apt/lists/*
COPY ./autorepacked ./autorepacked
ENV PYTHONPATH "${PYTHONPATH}:."
CMD ["python3", "-u", "./autorepacked/main.py"]