DeepFakeAI-V1 / Dockerfile
imspsycho's picture
Create Dockerfile
e49a80c verified
Raw
History Blame Contribute Delete
373 Bytes
FROM python:3.10
WORKDIR /app
RUN apt-get update && apt-get install -y \
ffmpeg \
git \
git-lfs \
libsm6 \
libxext6 \
libgl1 \
cmake \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --upgrade pip setuptools wheel
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]