File size: 363 Bytes
552b1a4 f6172bf acfc7bc 552b1a4 acfc7bc cb20ccf f6172bf 552b1a4 00bb3c9 cb20ccf 552b1a4 00bb3c9 552b1a4 00bb3c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# 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"]
|