File size: 1,756 Bytes
0448eaf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bbc2134
 
0448eaf
 
 
 
 
 
c52a700
 
 
bbc2134
0448eaf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
FROM python:3.11-slim

# Cập nhật package list và cài đặt các dependencies cần thiết
RUN apt-get update && \
    apt-get install -y --no-install-recommends \
        # Basic system tools
        gcc \
        g++ \
        make \
        git \
        wget \
        curl \
        # Libraries for various functionalities
        libglib2.0-0 \
        libsm6 \
        libxext6 \
        libxrender-dev \
        # Java runtime and compiler (headless version for containers)
        openjdk-17-jdk-headless \
    && rm -rf /var/lib/apt/lists/*

# Set JAVA_HOME environment variable
ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64
ENV PATH="$JAVA_HOME/bin:$PATH"

# Minimal JVM settings for extremely limited containers
ENV JAVA_OPTS="-Xms2m -Xmx16m -Djava.awt.headless=true"
# Remove _JAVA_OPTIONS that might cause conflicts

# Verify installations
RUN python3 --version && \
    gcc --version && \
    g++ --version && \
    java -version && \
    javac -version

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

# Copy requirements and install Python dependencies
COPY --chown=user ./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=user . /app

# Create temporary directory for code execution (with proper permissions)
RUN mkdir -p /tmp/code_workspace && chmod 755 /tmp/code_workspace

# Expose port
EXPOSE 7860

# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
    CMD curl -f http://localhost:7860/health || exit 1

# Start command
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]