runabot/Dockerfile

14 lines
506 B
Docker
Raw Normal View History

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 .
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN pip install pandas py-cord koreanbots motor uvloop korcen nanoid pendulum Wavelink onnxruntime psutil meilisearch_python_sdk Pillow opencv-python aiogoogletrans sentry-sdk
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"]