Spaces:
Running
Running
FROM ubuntu:20.04 | |
RUN apt-get update && apt-get install -y ffmpeg python3-pip | |
# Install project dependencies | |
RUN pip install -r requirements.txt | |
# Copy project code to container | |
COPY . /app | |
# Set working directory | |
WORKDIR /app | |
# Start FaceFusion API | |
CMD ["python", "run.py", "--api"] |