Files
ich_iel-Bot/Dockerfile
T
Michelle a775a55291
Build and publish ich_iel bot / build (push) Successful in 6m4s
update Dockerfile with ffmpeg
Co-authored-by: Copilot <copilot@github.com>
2026-04-30 16:18:26 +02:00

9 lines
294 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 && apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/*
COPY . .
CMD ["python", "-u", "main.py"]