Add initial Dockerfile

This commit is contained in:
neko 2025-01-16 21:11:39 +05:00
parent 274946d22a
commit 72041a472d
1 changed files with 13 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM alpine:latest
RUN apk add --no-cache libreoffice py3-pip
WORKDIR /2pdf
COPY main.py /2pdf/
COPY 2pdf.session /2pdf/
RUN pip install --break-system-packages pyrogram
CMD ["python", "main.py"]