Files
FileStreamBot-Caduceus/Dockerfile
2023-11-05 22:02:58 +05:30

8 lines
115 B
Docker

FROM python:3.11
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["python", "-m", "bot"]