Docker and installation issues

This commit is contained in:
root
2026-07-07 23:22:12 +02:00
parent 934e7a6240
commit 4ff0427b64
3 changed files with 15 additions and 13 deletions
+4 -1
View File
@@ -1,7 +1,7 @@
# Conjurer main Discord bot.
# Build from the repository root:
# docker build -f docker/Dockerfile.bot -t conjurer-bot .
FROM python:3.11-slim
FROM python:3.13-trixie
# System dependencies:
# ffmpeg - audio download/convert (yt_dlp) and Discord voice
@@ -17,6 +17,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
ca-certificates \
python3-dev \
build-essential \
portaudio19-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app