With the new base image the requirements.txt is not loaded,
therefor it has to be added into the dockerfile
Issue-ID: OOM-3280
Change-Id: I00cdf1f60ae2e07d6b0fc7246798f2d241d17471
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
ENV CERT="/var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
ENV TOKEN="/var/run/secrets/kubernetes.io/serviceaccount/token"
+COPY requirements.txt .
+RUN pip install -r requirements.txt
COPY ready.py .
ENTRYPOINT ["/app/ready.py"]
+requests==2.31.0
kubernetes==29.0.0