SlashBot/Dockerfile
2021-12-13 08:18:11 +08:00

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"]