mirror of
https://github.com/TheCaduceus/FileStreamBot.git
synced 2026-01-16 00:43:26 -03:00
8 lines
115 B
Docker
8 lines
115 B
Docker
|
|
FROM python:3.11
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
COPY . /app
|
||
|
|
|
||
|
|
RUN pip install -r requirements.txt
|
||
|
|
|
||
|
|
CMD ["python", "-m", "bot"]
|