modified: Dockerfile

modified:   bot.py
This commit is contained in:
SimolZimol
2025-08-29 17:44:11 +02:00
parent 0debc03ec8
commit 4c4c15f63e
2 changed files with 175 additions and 3 deletions

View File

@@ -4,6 +4,15 @@ FROM python:3.10-slim
# Arbeitsverzeichnis erstellen
WORKDIR /app
# System-Dependencies installieren (inkl. FFmpeg für Audio-Support)
RUN apt-get update && apt-get install -y \
ffmpeg \
libffi-dev \
libnacl-dev \
python3-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Kopiere die requirements-Datei und installiere die Abhängigkeiten
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt