SlashBot/Dockerfile

9 lines
172 B
Docker
Raw Normal View History

FROM python:3.9-slim
2020-10-26 02:25:58 +08:00
WORKDIR /app
COPY . /app
2021-12-13 04:54:02 +08:00
RUN pip install --no-cache-dir --trusted-host pypi.python.org -r /app/requirements.txt
2020-10-26 02:25:58 +08:00
CMD ["python", "-u", "SlashBot.py"]