File size: 807 Bytes
447816d
 
 
 
 
 
 
5c19521
 
 
447816d
5c19521
 
447816d
f5e4c93
 
5c19521
447816d
f526f28
5c19521
 
447816d
5c19521
447816d
f5e4c93
5c19521
 
 
447816d
5c19521
 
447816d
 
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
FROM python:3.10-slim

# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \

    build-essential \
    git \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /code

# Copy requirements file
COPY ./requirements.txt /code/requirements.txt

# Upgrade pip and install requirements
RUN pip install --no-cache-dir --upgrade pip && \

    pip install --no-cache-dir -r /code/requirements.txt

# Create and use non-root user
RUN useradd -m user
USER user

# Set environment variables
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH \
    PYTHONUNBUFFERED=1

WORKDIR $HOME/app

# Copy application code
COPY --chown=user . $HOME/app

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