From: aravind.est Date: Fri, 22 Aug 2025 15:43:55 +0000 (+0100) Subject: Fix CI due to broken packages X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F14841%2F1;p=nonrtric%2Fplt%2Frappcatalogue.git Fix CI due to broken packages CI broken due to some broken packages. This fixes the issue. Issue-ID: NONRTRIC-1086 Change-Id: I41ee92a9aa98d489228e586d1cfc11fbead39919 Signed-off-by: aravind.est --- diff --git a/catalogue-enhanced/Dockerfile b/catalogue-enhanced/Dockerfile index 4b5fbef..a7e0a27 100644 --- a/catalogue-enhanced/Dockerfile +++ b/catalogue-enhanced/Dockerfile @@ -1,6 +1,6 @@ # ============LICENSE_START=============================================== # Copyright (C) 2022-2023 Nordix Foundation. All rights reserved. -# Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved. +# Copyright (C) 2023-2025 OpenInfra Foundation Europe. All rights reserved. # ======================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,6 +17,11 @@ # FROM python:3.10-slim-buster +RUN sed -i 's|deb.debian.org/debian|archive.debian.org/debian|g' /etc/apt/sources.list \ + && sed -i '/security.debian.org/d' /etc/apt/sources.list \ + && echo "deb http://archive.debian.org/debian-security buster/updates main" >> /etc/apt/sources.list \ + && apt-get update + RUN apt-get update && apt-get install -y nginx=1.14.* nginx-extras curl RUN pip install Flask==2.2.5 connexion[swagger-ui,flask]==2.14.2