SlashBot/Dockerfile

9 lines
157 B
Docker
Raw Normal View History

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