Spaces:
Running
Running
File size: 288 Bytes
8fb085a 94b5b2a 8fb085a 94b5b2a 8fb085a 94b5b2a 8fb085a 94b5b2a 8fb085a 94b5b2a 8fb085a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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"] |