Spaces:
No application file
No application file
File size: 159 Bytes
a85c9b8 | 1 2 3 4 5 6 7 8 9 10 11 12 | FROM python:3.11-slim
WORKDIR /usr/src/
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "telegram_bot.py"]
|