windahbasudara / Dockerfile
ImOptimus's picture
Update Dockerfile
638ef70
Raw
History Blame Contribute Delete
312 Bytes
FROM python:3.10
WORKDIR /app
RUN apt-get update && apt-get install -y \
ffmpeg git git-lfs cmake rsync libgl1 libsm6 libxext6 \
&& rm -rf /var/lib/apt/lists/* \
&& git lfs install
COPY . .
RUN pip install pip==23.3.1 \
&& pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]