Files
omnara-agent-monitor/docker/db-init.Dockerfile
Kartik Sarangmath d12fe4a101 Initial commit
2025-07-08 19:17:44 -07:00

13 lines
262 B
Docker

FROM python:3.12-slim
WORKDIR /app
# Copy shared requirements
COPY shared/requirements.txt /app/shared/requirements.txt
RUN pip install --no-cache-dir -r shared/requirements.txt
# Copy shared code
COPY shared /app/shared
# Set Python path
ENV PYTHONPATH=/app