mirror of
https://github.com/TheCaduceus/FileStreamBot.git
synced 2026-01-15 16:33:25 -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"]
|