This commit is contained in:
Tour
2025-12-05 08:57:29 +01:00
parent 243573d4b2
commit 36a1edfecf

View File

@@ -13,11 +13,12 @@ RUN mvn package -DskipTests -Dquarkus.package.jar.type=uber-jar -Dquarkus.packag
FROM eclipse-temurin:25-jre FROM eclipse-temurin:25-jre
WORKDIR /app WORKDIR /app
# Install libstdc++ and other OpenCV dependencies # Install libstdc++ and other OpenCV dependencies + wget for health checks
RUN apt-get update && \ RUN apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
libstdc++6 \ libstdc++6 \
libgomp1 \ libgomp1 \
wget \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Create user (Debian syntax) # Create user (Debian syntax)