File size: 695 Bytes
c09c0d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Use an official Python runtime as a parent image
FROM python:3.9-slim

# Set the working directory in the container
WORKDIR /code

# Copy the dependencies file to the working directory
COPY ./requirements.txt /code/requirements.txt

# Install any needed packages specified in requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt

# Copy the main application file
COPY ./app.py /code/app.py

# Expose the port that Gunicorn will run on
# Hugging Face Spaces expects the app to run on port 7860
EXPOSE 7860

# Define the command to run the application using Gunicorn
# This will be a robust server for your API
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]