mirror of
https://github.com/Maks1mS/altlinux-autorepacked.git
synced 2024-12-23 22:52:59 +03:00
12 lines
260 B
Docker
12 lines
260 B
Docker
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"] |