Files
arnis/Dockerfile
Louis 867d20d29f Fixed run() entrypoint
Added debug files to .gitignore
Added f-Strings in print statements
Added Dockerfile
Removed unnecessary packages from requirements.txt
2022-10-09 02:18:18 +02:00

6 lines
258 B
Docker

FROM python:3.9
RUN apt-get update && apt-get -y install git ffmpeg libsm6 libxext6
RUN cd /home && mkdir /home/region && git clone https://github.com/louis-e/arnis.git
WORKDIR /home/arnis
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "arnis.py"]