From 91133d5f1244324ef2a9ff83a7d2b92263aed64c Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sun, 6 Apr 2025 11:53:49 +0200 Subject: [PATCH] Use slimmer base image in GitLab CI configuration Switch the CI pipeline base image to `maven:3-amazoncorretto-17-slim-bullseye` for a lighter and more efficient build environment. This change reduces unnecessary overhead while maintaining compatibility. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 17840ab..15d6722 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ default: - image: maven:3-amazoncorretto-17 + image: maven:3-amazoncorretto-17-slim-bullseye stages: - pull