This commit is contained in:
ai-dev
2025-09-21 23:46:25 +02:00
parent e8098221d8
commit 9440c9d265

View File

@@ -1,10 +1,11 @@
ARG BASE_IMAGE=opensearchproject/opensearch:latest ARG BASE_IMAGE=opensearchproject/opensearch:latest
FROM ${BASE_IMAGE} FROM ${BASE_IMAGE}
# Install dependencies for configuration # Install dependencies for configuration (Ubuntu uses apt)
RUN microdnf update -y && \ RUN apt-get update -y && \
microdnf install -y gettext bash jq && \ apt-get install -y gettext-base jq && \
microdnf clean all apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Copy configuration files and scripts # Copy configuration files and scripts
COPY rootfs/ / COPY rootfs/ /