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