SlashBot/Dockerfile

11 lines
200 B
Docker
Raw Permalink Normal View History

FROM python:3.9-slim
2020-10-26 02:25:58 +08:00
WORKDIR /app
2022-03-28 04:59:36 +08:00
COPY requirements.txt /app
2020-10-26 02:25:58 +08:00
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
2022-03-28 04:59:36 +08:00
COPY . /app
2020-10-26 02:25:58 +08:00
CMD ["python", "-u", "SlashBot.py"]