add noninteractive flag to ffmpeg installation in Dockerfile
Build and publish ich_iel bot / build (push) Failing after 18m41s

This commit is contained in:
2026-05-27 14:48:32 +02:00
parent c7adb15c86
commit d4502bed84
+1 -1
View File
@@ -4,6 +4,6 @@ ENV PATH=/usr/local/bin:$PATH
WORKDIR /app
COPY 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/*
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/*
COPY . .
CMD ["python", "-u", "main.py"]