mirror of
https://github.com/Rongronggg9/SlashBot.git
synced 2025-02-06 17:23:28 +08:00
9 lines
172 B
Docker
9 lines
172 B
Docker
FROM python:3.9-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install --no-cache-dir --trusted-host pypi.python.org -r /app/requirements.txt
|
|
|
|
CMD ["python", "-u", "SlashBot.py"] |