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