From 504f814b414a70a2f2c892009d5ba5a542ae4bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Papou=C5=A1ek?= Date: Fri, 1 Mar 2024 15:18:42 +0100 Subject: [PATCH] Update base images used in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0cd41705..10120f87 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM registry.redhat.io/rhel8/go-toolset:1.18.9-8.1675807488 AS builder +FROM registry.redhat.io/ubi9/go-toolset:1.18.10 AS builder COPY . . @@ -23,7 +23,7 @@ RUN umask 0022 && \ make build && \ chmod a+x ccx-notification-service -FROM registry.access.redhat.com/ubi8/ubi-micro:latest +FROM registry.access.redhat.com/ubi9/ubi-micro:latest COPY --from=builder /opt/app-root/src/ccx-notification-service . COPY --from=builder /opt/app-root/src/config.toml .