File size: 630 Bytes
336fa4a
 
2622e09
 
d1f5a62
 
336fa4a
 
 
 
 
 
 
 
 
 
 
 
7b7e706
336fa4a
 
d1f5a62
 
336fa4a
 
d1f5a62
336fa4a
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
FROM python:3.10

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

# Avoid interactive prompts
ENV DEBIAN_FRONTEND=noninteractive

# Install system dependencies
RUN apt-get update && apt-get install -y \
    libgl1-mesa-glx \
    libglib2.0-0 \
    gdal-bin \
    python3-gdal \
    && rm -rf /var/lib/apt/lists/*

# Set work directory
WORKDIR /app

# Install Python packages
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

# Copy all files
COPY --chown=user . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]