video / dockerfile
KKNTR's picture
Update dockerfile
552b1a4 verified
raw
history blame contribute delete
363 Bytes
# Peruskuva
FROM python:3.10-slim
# Asenna perustyökalut
RUN apt-get update && apt-get install -y git ffmpeg libsm6 libxext6 && rm -rf /var/lib/apt/lists/*
# Työhakemisto
WORKDIR /app
# Kopioi tiedostot
COPY requirements.txt .
COPY app.py .
# Asenna Python riippuvuudet
RUN pip install --no-cache-dir -r requirements.txt
# Aja app
CMD ["python", "app.py"]