File size: 1,259 Bytes
9de4eee
 
47031d7
9de4eee
 
47031d7
9de4eee
 
 
 
 
 
 
 
47031d7
2f48b4a
 
9de4eee
 
 
 
9eee3d5
47031d7
2f48b4a
9de4eee
 
 
 
 
 
 
 
 
 
bd429c7
9de4eee
 
 
 
47031d7
9de4eee
 
 
 
 
47031d7
 
bca8521
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
39
40
41
42
43
44
45
46
47
48
# Use Red Hat Universal Base Image (UBI) 9 with Python 3.11
FROM registry.access.redhat.com/ubi9/python-311:latest

# Switch to root for system installations
USER 0

# Install system dependencies
RUN dnf install -y \
    gcc \
    gcc-c++ \
    git \
    make \
    && dnf clean all \
    && rm -rf /var/cache/dnf

# Set up application directory
RUN mkdir -p /app && \
    chown -R 1001:0 /app && \
    chmod -R g=u /app

# Set working directory
WORKDIR /app

# Switch to non-root user (default in UBI image)
USER 1001

# Copy requirements first to leverage Docker cache
COPY --chown=1001:0 ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade pip && \
    pip install --no-cache-dir --upgrade -r requirements.txt

# Copy application code
COPY --chown=1001:0 . /app
COPY --chown=1001:0 main/ /app/main
# COPY --chown=1001:0 resources/local_config.yaml /app/resources/local_config.yaml

# Create directory for models cache
RUN mkdir -p /app/.cache/huggingface && \
    chmod -R g=u /app/.cache

# Environment variables
ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
ENV HOME=/app
ENV HUGGINGFACE_HOME=/app/.cache/huggingface

# Command to run the application
CMD ["uvicorn", "main.main:app", "--host", "0.0.0.0", "--port", "8002"]