Adding files

This commit is contained in:
root
2024-09-20 17:41:35 +02:00
parent 21bd8ccd72
commit b736a5060c
4 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
FROM python:3.11
RUN mkdir /app
ADD requirements.txt /app
RUN pip install -r /app/requirements.txt
ADD *.py /app/
WORKDIR /app
CMD [ "python", "/app/telegram-epub-receiver.py" ]