a775a55291
Build and publish ich_iel bot / build (push) Successful in 6m4s
Co-authored-by: Copilot <copilot@github.com>
9 lines
294 B
Docker
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"] |