-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
65 lines (50 loc) · 2.02 KB
/
Dockerfile
File metadata and controls
65 lines (50 loc) · 2.02 KB
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
63
64
65
# AEC Design Management RAG System - Dockerfile
# Multi-stage build for production deployment
# =============================================================================
# Stage 1: Base Image with Python and System Dependencies
# =============================================================================
FROM python:3.11-slim as base
# Set environment variables
ENV PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1 \
PIP_NO_CACHE_DIR=1 \
PIP_DISABLE_PIP_VERSION_CHECK=1
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
curl \
git \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user
RUN useradd -m -u 1000 aecuser && \
mkdir -p /app && \
chown -R aecuser:aecuser /app
WORKDIR /app
# =============================================================================
# Stage 2: Dependencies Installation
# =============================================================================
FROM base as dependencies
# Copy requirements
COPY --chown=aecuser:aecuser requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# =============================================================================
# Stage 3: Application
# =============================================================================
FROM dependencies as application
# Switch to non-root user
USER aecuser
# Copy application code
COPY --chown=aecuser:aecuser src/ ./src/
# COPY --chown=aecuser:aecuser config/ ./config/ # Directory not present
# COPY --chown=aecuser:aecuser scripts/ ./scripts/ # Directory not present
COPY --chown=aecuser:aecuser .env.example ./
# Create data directories
RUN mkdir -p ./data/{uploads,processed,cache,graphrag,chroma_db} ./logs
# Expose API port
EXPOSE 8000
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:8000/api/v1/health || exit 1
# Default command: Run FastAPI application
CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "8000"]