Files
Michelle d4502bed84
Build and publish ich_iel bot / build (push) Failing after 18m41s
add noninteractive flag to ffmpeg installation in Dockerfile
2026-05-27 14:48:32 +02:00

9 lines
325 B
Docker

FROM python:3.13.13-slim-trixie
ENV PATH=/usr/local/bin:$PATH
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
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"]