update Dockerfile with ffmpeg
Build and publish ich_iel bot / build (push) Successful in 6m4s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-30 16:18:26 +02:00
parent c365cd1ff2
commit a775a55291
+2 -1
View File
@@ -1,8 +1,9 @@
FROM python:3.13.12-slim-trixie FROM python:3.13.13-slim-trixie
ENV PATH=/usr/local/bin:$PATH ENV PATH=/usr/local/bin:$PATH
WORKDIR /app WORKDIR /app
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/*
COPY . . COPY . .
CMD ["python", "-u", "main.py"] CMD ["python", "-u", "main.py"]