From 9440c9d26577f6c8a094749c47f3cb48de61c6c8 Mon Sep 17 00:00:00 2001 From: ai-dev Date: Sun, 21 Sep 2025 23:46:25 +0200 Subject: [PATCH] test --- opensearch-master/Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/opensearch-master/Dockerfile b/opensearch-master/Dockerfile index 9ac58bf..0cd7373 100644 --- a/opensearch-master/Dockerfile +++ b/opensearch-master/Dockerfile @@ -1,10 +1,11 @@ ARG BASE_IMAGE=opensearchproject/opensearch:latest FROM ${BASE_IMAGE} -# Install dependencies for configuration -RUN microdnf update -y && \ - microdnf install -y gettext bash jq && \ - microdnf clean all +# Install dependencies for configuration (Ubuntu uses apt) +RUN apt-get update -y && \ + apt-get install -y gettext-base jq && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* # Copy configuration files and scripts COPY rootfs/ /