runabot/Dockerfile

16 lines
319 B
Docker
Raw Normal View History

2023-11-25 15:57:41 +00:00
FROM python:3.11.5-slim
2023-11-25 15:57:41 +00:00
WORKDIR /app
2023-11-25 15:57:41 +00:00
COPY requirements.txt .
2023-11-25 15:57:41 +00:00
RUN pip install --no-cache-dir -r requirements.txt
RUN pip uninstall -y discord.py py-cord
RUN pip install --no-cache-dir py-cord[speed] py-cord[voice]
2023-12-02 10:42:36 +00:00
RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
COPY . .
2023-11-25 15:57:41 +00:00
CMD ["python", "-m", "Christmas"]