runabot/Dockerfile

16 lines
319 B
Docker

FROM python:3.11.5-slim
WORKDIR /app
COPY requirements.txt .
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]
RUN ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime
COPY . .
CMD ["python", "-m", "Christmas"]