File size: 736 Bytes
b89dcc8
41d0588
 
b89dcc8
41d0588
 
b89dcc8
 
 
41d0588
b156800
63b5a75
b156800
63b5a75
b156800
6e42f9d
b156800
63b5a75
b89dcc8
 
41d0588
b89dcc8
24e31ad
41d0588
b89dcc8
24e31ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Use an official Python runtime as a parent image
FROM python:3.9-slim

# Set the working directory
WORKDIR /app

# Copy the requirements file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Create cache and config directories with appropriate permissions
RUN mkdir -p /app/cache && chmod 777 /app/cache
RUN mkdir -p /app/config && chmod 777 /app/config

# Set environment variables for Hugging Face cache and config directories
ENV HF_HOME=/app/cache
ENV XDG_CONFIG_HOME=/app/config

# Copy the application code
COPY main.py .

# Expose the port FastAPI will run on
EXPOSE 7860

# Command to run the FastAPI app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]