Files
discord-heidi/Dockerfile
Christoph Urlacher 75fb627361
All checks were successful
Build Heidi Docker image / build-docker (push) Successful in 2m12s
Clean up type hints everywhere, overhaul bot configuration
2025-09-23 20:43:42 +02:00

11 lines
186 B
Docker

FROM python:3.13.7-slim-trixie
RUN apt-get update -y && apt-get install -y ffmpeg libopus0
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
CMD ["python3", "-u", "bot.py"]