Add travel border Telegram bot

This commit is contained in:
serhei_t
2026-06-17 10:53:15 +03:00
parent 1c3e3f0a28
commit ae6ce2d886
12 changed files with 572 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
CMD ["python", "-m", "app.main"]