Add Translator Bot for Telegram

This commit is contained in:
2024-07-11 02:54:47 +02:00
parent 5821636a01
commit fbecbbf0a1
6 changed files with 320 additions and 14 deletions

View File

@@ -0,0 +1,10 @@
FROM python:3.10-alpine
WORKDIR /app
COPY . /app/
RUN pip install -r requirements.txt
CMD ["python", "translator.py"]