Fix formatting in Dockerfile

This commit is contained in:
2025-12-31 09:18:51 +01:00
committed by GitHub
parent cf98dcde52
commit c4f8ee3d19

View File

@@ -2,17 +2,16 @@ FROM python:3.12-slim
WORKDIR /app WORKDIR /app
# ffprobe kommt aus ffmpeg
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends ffmpeg \ && apt-get install -y --no-install-recommends ffmpeg \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir \ RUN pip install --no-cache-dir \
fastapi \ fastapi \
uvicorn \ uvicorn \
myjdapi \ myjdapi \
paramiko \ paramiko \
python-multipart python-multipart
COPY app.py /app/app.py COPY app.py /app/app.py
COPY static /app/static COPY static /app/static