26 lines
569 B
Docker
26 lines
569 B
Docker
|
|
FROM python:3.11-slim
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Install system dependencies
|
||
|
|
RUN apt-get update && apt-get install -y \
|
||
|
|
gcc \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
# Copy requirements and install dependencies
|
||
|
|
COPY services/alert_processor/requirements.txt .
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
|
||
|
|
# Copy shared libraries
|
||
|
|
COPY shared/ /app/shared/
|
||
|
|
|
||
|
|
# Copy application code
|
||
|
|
COPY services/alert_processor/app/ /app/app/
|
||
|
|
|
||
|
|
# Create non-root user
|
||
|
|
RUN useradd -m -u 1000 appuser && chown -R appuser:appuser /app
|
||
|
|
USER appuser
|
||
|
|
|
||
|
|
EXPOSE 8000
|
||
|
|
|
||
|
|
CMD ["python", "-m", "app.main"]
|