baseline-awareness-service.git · Dockerfile
baseline-awareness-service.git / Dockerfile
revision 1f65b7e1e47d68f88442fcb7c3d17235f6fbdf1d · complete file
FROM python:3.11-slim AS base WORKDIR /app # Install runtime dependencies only COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt uvicorn # Copy everything (including app folder) COPY . . EXPOSE 8000 CMD ["uvicorn", "app.entrypoint:app", "--host", "0.0.0.0", "--port", "8000"]