File size: 1,197 Bytes
c292a92
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
35
36
37
38
# Use a Python image 
FROM python:3.12-slim

# Create a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user

# Switch to the "user" user for the remainder of the build
USER user

# Set home to the user's home directory and update PATH accordingly
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

# Set the working directory to the user's home directory
WORKDIR $HOME/app

# Upgrade pip (as non-root) to avoid permission issues
RUN pip install --no-cache-dir --upgrade pip

# Copy the requirements file (with the correct ownership) to leverage Docker cache
COPY --chown=user requirements.txt $HOME/app/requirements.txt

# Install Python dependencies
RUN pip install -r requirements.txt

# Copy the rest of the application code into the container (with proper ownership)
COPY --chown=user . $HOME/app

# (Optional) If you need to download a checkpoint or other assets:
# RUN mkdir -p content
# ADD --chown=user https://<SOME_ASSET_URL> content/<SOME_ASSET_NAME>

# Expose port 7860 (Hugging Face Spaces expects your app to listen on this port)
EXPOSE 7860

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