trainloraf / dockerfile.dockerfile
LHRuig's picture
Upload 3 files
d41cf19 verified
raw
history blame contribute delete
151 Bytes
FROM python:3.10
WORKDIR /app
RUN apt-get update && apt-get install -y git ffmpeg
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]