fix: load gateway services from yaml

This commit is contained in:
2025-01-12 13:13:39 +05:30
parent d4db24a8d8
commit b297643ef7
2 changed files with 10 additions and 8 deletions

View File

@@ -2,10 +2,11 @@
FROM python:3.13-alpine3.19
# Install the Kubernetes Python client
RUN pip install kubernetes kubernetes_asyncio
RUN pip install kubernetes kubernetes_asyncio PyYAML
# Copy the controller script into the container
COPY node_external_ip_controller_async.py /app/node_external_ip_controller.py
COPY gateway_services.yaml /app/gateway_services.yaml
# Set the working directory
WORKDIR /app