File size: 778 Bytes
4f59c55
 
a089fd3
4f59c55
df998c4
a089fd3
 
 
 
 
 
 
 
 
 
4f59c55
 
 
 
a089fd3
4f59c55
 
 
 
 
 
 
 
 
 
 
 
 
a089fd3
4f59c55
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
FROM python:3.10-slim

# Install system libraries with broader package names
RUN apt-get update && apt-get install -y \
    libgl1 \
    libglx0 \
    libegl1 \
    libdbus-1-3 \
    libxcursor1 \
    libxcomposite1 \
    libxdamage1 \
    libxrandr2 \
    libxtst6 \
    libpango-1.0-0 \
    libasound2 \
    libglib2.0-0 \
    git \
    && rm -rf /var/lib/apt/lists/*

# Setup non-root user
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"

WORKDIR /app

# Copy requirements and install
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

# Copy the rest of the application
COPY --chown=user . .

# Run the application
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]