File size: 507 Bytes
565a379
 
 
 
 
 
 
 
 
d1ec696
cc2fef3
 
565a379
 
 
 
 
 
 
 
1ce6029
 
 
565a379
 
 
1ce6029
565a379
1ce6029
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
FROM python:3.12-slim

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

WORKDIR /app

RUN apt-get update && apt-get install -y --no-install-recommends \
    build-essential \
    curl \
    git \
    libgl1 \
    libglib2.0-0 \
    && rm -rf /var/lib/apt/lists/*

COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

# Ensure start script is executable
RUN chmod +x start.sh

RUN useradd -m appuser && chown -R appuser /app
USER appuser

EXPOSE 7860

CMD ["./start.sh"]