Files

8 lines
115 B
Docker
Raw Permalink Normal View History

2023-11-05 22:02:58 +05:30
FROM python:3.11
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["python", "-m", "bot"]