Add base kubernetes support final fix 2

This commit is contained in:
Urtzi Alfaro
2025-09-28 19:48:05 +02:00
parent 83f1d9df87
commit 57f77638cc
36 changed files with 1073 additions and 2645 deletions

View File

@@ -1,5 +1,5 @@
# Add this stage at the top of each service Dockerfile
FROM python:3.11-slim as shared
FROM python:3.11-slim AS shared
WORKDIR /shared
COPY shared/ /shared/
@@ -27,7 +27,7 @@ COPY --from=shared /shared /app/shared
COPY services/forecasting/ .
# Add shared libraries to Python path
ENV PYTHONPATH="/app:/app/shared:$PYTHONPATH"
ENV PYTHONPATH="/app:/app/shared:${PYTHONPATH:-}"
# Expose port
EXPOSE 8000