Spaces:
Runtime error
Runtime error
| # Use an official Python runtime as a parent image | |
| FROM python:3.12-slim | |
| # Set the working directory in the container to /app | |
| WORKDIR /app | |
| # Add the current directory contents into the container at /app | |
| ADD . /app | |
| # Install ffmpeg | |
| RUN apt-get update && apt-get install -y ffmpeg | |
| # Create a virtual environment and activate it | |
| RUN python -m venv /opt/venv | |
| # Ensure the virtual environment is used | |
| ENV PATH="/opt/venv/bin:$PATH" | |
| # Install any needed packages specified in requirements.txt | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Make port 7680 available to the world outside this container | |
| EXPOSE 7680 | |
| COPY ./defaults.linux.json ./defaults.json | |
| RUN chmod +x ./bin/* | |
| RUN chmod +x ./setup.sh | |
| RUN ./setup.sh | |
| RUN mkdir webdl | |
| # Run gunicorn when the container launches | |
| CMD ["nohup","gunicorn", "-b", "0.0.0.0:7680", "beta.api.api:app", "&"] | |