From b40bfcb72bb9659716721f2d285ce1f0a6dc1a6c Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 15:03:14 +0000 Subject: [PATCH 01/12] 24.03-lts update loki to 3.4.2 --- loki/3.4.2/24.03-lts/Dockerfile | 30 ++++++++++++++++++ loki/3.4.2/24.03-lts/local-config.yaml | 42 ++++++++++++++++++++++++++ loki/meta.yml | 4 ++- 3 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 loki/3.4.2/24.03-lts/Dockerfile create mode 100644 loki/3.4.2/24.03-lts/local-config.yaml diff --git a/loki/3.4.2/24.03-lts/Dockerfile b/loki/3.4.2/24.03-lts/Dockerfile new file mode 100644 index 0000000..441952f --- /dev/null +++ b/loki/3.4.2/24.03-lts/Dockerfile @@ -0,0 +1,30 @@ +ARG BASE=openeuler/openeuler:24.03-lts +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=3.4.2 + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch64"; \ + fi && \ + curl -fSL --output grafana-logcli.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/logcli-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-loki.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/loki-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-promtail.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/promtail-${VERSION}.${BUILDARCH}.rpm && \ + yum -y install grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm && \ + rm -rf grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm + +COPY local-config.yaml /etc/loki/local-config.yaml + +RUN groupadd -g 10001 loki && \ + adduser -u 10001 -g loki loki && \ + mkdir -p /loki/rules && \ + mkdir -p /loki/rules-temp && \ + chown -R loki:loki /etc/loki /loki + +USER 10001 +EXPOSE 3100 +ENTRYPOINT [ "loki" ] +CMD ["-config.file=/etc/loki/local-config.yaml"] diff --git a/loki/3.4.2/24.03-lts/local-config.yaml b/loki/3.4.2/24.03-lts/local-config.yaml new file mode 100644 index 0000000..b74d356 --- /dev/null +++ b/loki/3.4.2/24.03-lts/local-config.yaml @@ -0,0 +1,42 @@ +auth_enabled: false + +server: + http_listen_port: 3100 + +common: + instance_addr: 127.0.0.1 + path_prefix: /loki + storage: + filesystem: + chunks_directory: /loki/chunks + rules_directory: /loki/rules + replication_factor: 1 + ring: + kvstore: + store: inmemory + +schema_config: + configs: + - from: 2020-10-24 + store: tsdb + object_store: filesystem + schema: v13 + index: + prefix: index_ + period: 24h + +ruler: + alertmanager_url: http://localhost:9093 + +# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration +# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/ +# +# Statistics help us better understand how Loki is used, and they show us performance +# levels for most users. This helps us prioritize features and documentation. +# For more information on what's sent, look at +# https://github.com/grafana/loki/blob/main/pkg/usagestats/stats.go +# Refer to the buildReport method to see what goes into a report. +# +# If you would like to disable reporting, uncomment the following lines: +#analytics: +# reporting_enabled: false \ No newline at end of file diff --git a/loki/meta.yml b/loki/meta.yml index 0512e99..8bb1e57 100644 --- a/loki/meta.yml +++ b/loki/meta.yml @@ -23,4 +23,6 @@ 3.3.2-oe2203sp4: path: loki/3.3.2/22.03-lts-sp4/Dockerfile 3.3.2-oe2203sp1: - path: loki/3.3.2/22.03-lts-sp1/Dockerfile \ No newline at end of file + path: loki/3.3.2/22.03-lts-sp1/Dockerfile +3.4.2-oe2403lts: + path: loki/3.4.2/24.03-lts/Dockerfile \ No newline at end of file -- Gitee From 7b79eae95eb28506177de5f2762c878e2d68f3e6 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 15:04:22 +0000 Subject: [PATCH 02/12] 22.03-lts-sp3 update loki to 3.4.2 --- loki/3.4.2/22.03-lts-sp3/Dockerfile | 30 ++++++++++++++++ loki/3.4.2/22.03-lts-sp3/local-config.yaml | 42 ++++++++++++++++++++++ loki/meta.yml | 4 ++- 3 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 loki/3.4.2/22.03-lts-sp3/Dockerfile create mode 100644 loki/3.4.2/22.03-lts-sp3/local-config.yaml diff --git a/loki/3.4.2/22.03-lts-sp3/Dockerfile b/loki/3.4.2/22.03-lts-sp3/Dockerfile new file mode 100644 index 0000000..336df15 --- /dev/null +++ b/loki/3.4.2/22.03-lts-sp3/Dockerfile @@ -0,0 +1,30 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp3 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=3.4.2 + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch64"; \ + fi && \ + curl -fSL --output grafana-logcli.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/logcli-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-loki.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/loki-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-promtail.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/promtail-${VERSION}.${BUILDARCH}.rpm && \ + yum -y install grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm && \ + rm -rf grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm + +COPY local-config.yaml /etc/loki/local-config.yaml + +RUN groupadd -g 10001 loki && \ + adduser -u 10001 -g loki loki && \ + mkdir -p /loki/rules && \ + mkdir -p /loki/rules-temp && \ + chown -R loki:loki /etc/loki /loki + +USER 10001 +EXPOSE 3100 +ENTRYPOINT [ "loki" ] +CMD ["-config.file=/etc/loki/local-config.yaml"] diff --git a/loki/3.4.2/22.03-lts-sp3/local-config.yaml b/loki/3.4.2/22.03-lts-sp3/local-config.yaml new file mode 100644 index 0000000..b74d356 --- /dev/null +++ b/loki/3.4.2/22.03-lts-sp3/local-config.yaml @@ -0,0 +1,42 @@ +auth_enabled: false + +server: + http_listen_port: 3100 + +common: + instance_addr: 127.0.0.1 + path_prefix: /loki + storage: + filesystem: + chunks_directory: /loki/chunks + rules_directory: /loki/rules + replication_factor: 1 + ring: + kvstore: + store: inmemory + +schema_config: + configs: + - from: 2020-10-24 + store: tsdb + object_store: filesystem + schema: v13 + index: + prefix: index_ + period: 24h + +ruler: + alertmanager_url: http://localhost:9093 + +# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration +# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/ +# +# Statistics help us better understand how Loki is used, and they show us performance +# levels for most users. This helps us prioritize features and documentation. +# For more information on what's sent, look at +# https://github.com/grafana/loki/blob/main/pkg/usagestats/stats.go +# Refer to the buildReport method to see what goes into a report. +# +# If you would like to disable reporting, uncomment the following lines: +#analytics: +# reporting_enabled: false \ No newline at end of file diff --git a/loki/meta.yml b/loki/meta.yml index 8bb1e57..99eec25 100644 --- a/loki/meta.yml +++ b/loki/meta.yml @@ -25,4 +25,6 @@ 3.3.2-oe2203sp1: path: loki/3.3.2/22.03-lts-sp1/Dockerfile 3.4.2-oe2403lts: - path: loki/3.4.2/24.03-lts/Dockerfile \ No newline at end of file + path: loki/3.4.2/24.03-lts/Dockerfile +3.4.2-oe2203sp3: + path: loki/3.4.2/22.03-lts-sp3/Dockerfile \ No newline at end of file -- Gitee From cd76a52cbac512c09dc4ec79d9b880864f61bc8b Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 15:05:24 +0000 Subject: [PATCH 03/12] 22.03-lts-sp4 update loki to 3.4.2 --- loki/3.4.2/22.03-lts-sp4/Dockerfile | 30 ++++++++++++++++ loki/3.4.2/22.03-lts-sp4/local-config.yaml | 42 ++++++++++++++++++++++ loki/meta.yml | 4 ++- 3 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 loki/3.4.2/22.03-lts-sp4/Dockerfile create mode 100644 loki/3.4.2/22.03-lts-sp4/local-config.yaml diff --git a/loki/3.4.2/22.03-lts-sp4/Dockerfile b/loki/3.4.2/22.03-lts-sp4/Dockerfile new file mode 100644 index 0000000..d442be2 --- /dev/null +++ b/loki/3.4.2/22.03-lts-sp4/Dockerfile @@ -0,0 +1,30 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp4 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=3.4.2 + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch64"; \ + fi && \ + curl -fSL --output grafana-logcli.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/logcli-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-loki.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/loki-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-promtail.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/promtail-${VERSION}.${BUILDARCH}.rpm && \ + yum -y install grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm && \ + rm -rf grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm + +COPY local-config.yaml /etc/loki/local-config.yaml + +RUN groupadd -g 10001 loki && \ + adduser -u 10001 -g loki loki && \ + mkdir -p /loki/rules && \ + mkdir -p /loki/rules-temp && \ + chown -R loki:loki /etc/loki /loki + +USER 10001 +EXPOSE 3100 +ENTRYPOINT [ "loki" ] +CMD ["-config.file=/etc/loki/local-config.yaml"] diff --git a/loki/3.4.2/22.03-lts-sp4/local-config.yaml b/loki/3.4.2/22.03-lts-sp4/local-config.yaml new file mode 100644 index 0000000..b74d356 --- /dev/null +++ b/loki/3.4.2/22.03-lts-sp4/local-config.yaml @@ -0,0 +1,42 @@ +auth_enabled: false + +server: + http_listen_port: 3100 + +common: + instance_addr: 127.0.0.1 + path_prefix: /loki + storage: + filesystem: + chunks_directory: /loki/chunks + rules_directory: /loki/rules + replication_factor: 1 + ring: + kvstore: + store: inmemory + +schema_config: + configs: + - from: 2020-10-24 + store: tsdb + object_store: filesystem + schema: v13 + index: + prefix: index_ + period: 24h + +ruler: + alertmanager_url: http://localhost:9093 + +# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration +# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/ +# +# Statistics help us better understand how Loki is used, and they show us performance +# levels for most users. This helps us prioritize features and documentation. +# For more information on what's sent, look at +# https://github.com/grafana/loki/blob/main/pkg/usagestats/stats.go +# Refer to the buildReport method to see what goes into a report. +# +# If you would like to disable reporting, uncomment the following lines: +#analytics: +# reporting_enabled: false \ No newline at end of file diff --git a/loki/meta.yml b/loki/meta.yml index 99eec25..99ff62c 100644 --- a/loki/meta.yml +++ b/loki/meta.yml @@ -27,4 +27,6 @@ 3.4.2-oe2403lts: path: loki/3.4.2/24.03-lts/Dockerfile 3.4.2-oe2203sp3: - path: loki/3.4.2/22.03-lts-sp3/Dockerfile \ No newline at end of file + path: loki/3.4.2/22.03-lts-sp3/Dockerfile +3.4.2-oe2203sp4: + path: loki/3.4.2/22.03-lts-sp4/Dockerfile \ No newline at end of file -- Gitee From 546a6f7d128fbe03468e614a89163d72d7f6fa36 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 15:06:31 +0000 Subject: [PATCH 04/12] 22.03-lts-sp1 update loki to 3.4.2 --- loki/3.4.2/22.03-lts-sp1/Dockerfile | 30 ++++++++++++++++ loki/3.4.2/22.03-lts-sp1/local-config.yaml | 42 ++++++++++++++++++++++ loki/meta.yml | 4 ++- 3 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 loki/3.4.2/22.03-lts-sp1/Dockerfile create mode 100644 loki/3.4.2/22.03-lts-sp1/local-config.yaml diff --git a/loki/3.4.2/22.03-lts-sp1/Dockerfile b/loki/3.4.2/22.03-lts-sp1/Dockerfile new file mode 100644 index 0000000..9b234fa --- /dev/null +++ b/loki/3.4.2/22.03-lts-sp1/Dockerfile @@ -0,0 +1,30 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=3.4.2 + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch64"; \ + fi && \ + curl -fSL --output grafana-logcli.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/logcli-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-loki.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/loki-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-promtail.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/promtail-${VERSION}.${BUILDARCH}.rpm && \ + yum -y install grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm && \ + rm -rf grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm + +COPY local-config.yaml /etc/loki/local-config.yaml + +RUN groupadd -g 10001 loki && \ + adduser -u 10001 -g loki loki && \ + mkdir -p /loki/rules && \ + mkdir -p /loki/rules-temp && \ + chown -R loki:loki /etc/loki /loki + +USER 10001 +EXPOSE 3100 +ENTRYPOINT [ "loki" ] +CMD ["-config.file=/etc/loki/local-config.yaml"] diff --git a/loki/3.4.2/22.03-lts-sp1/local-config.yaml b/loki/3.4.2/22.03-lts-sp1/local-config.yaml new file mode 100644 index 0000000..b74d356 --- /dev/null +++ b/loki/3.4.2/22.03-lts-sp1/local-config.yaml @@ -0,0 +1,42 @@ +auth_enabled: false + +server: + http_listen_port: 3100 + +common: + instance_addr: 127.0.0.1 + path_prefix: /loki + storage: + filesystem: + chunks_directory: /loki/chunks + rules_directory: /loki/rules + replication_factor: 1 + ring: + kvstore: + store: inmemory + +schema_config: + configs: + - from: 2020-10-24 + store: tsdb + object_store: filesystem + schema: v13 + index: + prefix: index_ + period: 24h + +ruler: + alertmanager_url: http://localhost:9093 + +# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration +# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/ +# +# Statistics help us better understand how Loki is used, and they show us performance +# levels for most users. This helps us prioritize features and documentation. +# For more information on what's sent, look at +# https://github.com/grafana/loki/blob/main/pkg/usagestats/stats.go +# Refer to the buildReport method to see what goes into a report. +# +# If you would like to disable reporting, uncomment the following lines: +#analytics: +# reporting_enabled: false \ No newline at end of file diff --git a/loki/meta.yml b/loki/meta.yml index 99ff62c..9f2d579 100644 --- a/loki/meta.yml +++ b/loki/meta.yml @@ -29,4 +29,6 @@ 3.4.2-oe2203sp3: path: loki/3.4.2/22.03-lts-sp3/Dockerfile 3.4.2-oe2203sp4: - path: loki/3.4.2/22.03-lts-sp4/Dockerfile \ No newline at end of file + path: loki/3.4.2/22.03-lts-sp4/Dockerfile +3.4.2-oe2203sp1: + path: loki/3.4.2/22.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee From c6121f1b1125f0e72a3a52cf08b85d58340ed2f8 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:08:42 +0000 Subject: [PATCH 05/12] update loki/3.4.2/24.03-lts/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/24.03-lts/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loki/3.4.2/24.03-lts/Dockerfile b/loki/3.4.2/24.03-lts/Dockerfile index 441952f..8b6f7b6 100644 --- a/loki/3.4.2/24.03-lts/Dockerfile +++ b/loki/3.4.2/24.03-lts/Dockerfile @@ -5,6 +5,8 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 +RUN dnf update && dnf install -y shadow-utils + RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ elif [ "$TARGETARCH" = "arm64" ]; then \ -- Gitee From 2b533e0e0a938025b51f6b90da8cab22c3c05bce Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:09:21 +0000 Subject: [PATCH 06/12] update loki/3.4.2/22.03-lts-sp4/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/22.03-lts-sp4/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loki/3.4.2/22.03-lts-sp4/Dockerfile b/loki/3.4.2/22.03-lts-sp4/Dockerfile index d442be2..df99167 100644 --- a/loki/3.4.2/22.03-lts-sp4/Dockerfile +++ b/loki/3.4.2/22.03-lts-sp4/Dockerfile @@ -5,6 +5,8 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 +RUN dnf update && dnf install -y shadow-utils + RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ elif [ "$TARGETARCH" = "arm64" ]; then \ -- Gitee From 6e699bad45aac7d592dacf1abdd3c5a2a2416bf4 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:10:42 +0000 Subject: [PATCH 07/12] update loki/3.4.2/22.03-lts-sp3/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/22.03-lts-sp3/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loki/3.4.2/22.03-lts-sp3/Dockerfile b/loki/3.4.2/22.03-lts-sp3/Dockerfile index 336df15..46ad502 100644 --- a/loki/3.4.2/22.03-lts-sp3/Dockerfile +++ b/loki/3.4.2/22.03-lts-sp3/Dockerfile @@ -5,6 +5,8 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 +RUN dnf update && dnf install -y shadow-utils + RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ elif [ "$TARGETARCH" = "arm64" ]; then \ -- Gitee From 6f20b04b38f36765375e6e8429a6408d7f2ade5b Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:11:06 +0000 Subject: [PATCH 08/12] update loki/3.4.2/22.03-lts-sp1/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/22.03-lts-sp1/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loki/3.4.2/22.03-lts-sp1/Dockerfile b/loki/3.4.2/22.03-lts-sp1/Dockerfile index 9b234fa..e92b452 100644 --- a/loki/3.4.2/22.03-lts-sp1/Dockerfile +++ b/loki/3.4.2/22.03-lts-sp1/Dockerfile @@ -5,6 +5,8 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 +RUN dnf update && dnf install -y shadow-utils + RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ elif [ "$TARGETARCH" = "arm64" ]; then \ -- Gitee From b4b514936e32115562fafb53070ca1484f41a804 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:11:53 +0000 Subject: [PATCH 09/12] update loki/3.4.2/24.03-lts/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/24.03-lts/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loki/3.4.2/24.03-lts/Dockerfile b/loki/3.4.2/24.03-lts/Dockerfile index 8b6f7b6..3295b85 100644 --- a/loki/3.4.2/24.03-lts/Dockerfile +++ b/loki/3.4.2/24.03-lts/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 -RUN dnf update && dnf install -y shadow-utils +RUN dnf install -y shadow-utils && dnf clean all RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ -- Gitee From a0b01f5497d5517c7f5c209c6681baf316903a03 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:12:11 +0000 Subject: [PATCH 10/12] update loki/3.4.2/22.03-lts-sp4/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/22.03-lts-sp4/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loki/3.4.2/22.03-lts-sp4/Dockerfile b/loki/3.4.2/22.03-lts-sp4/Dockerfile index df99167..72bdaf0 100644 --- a/loki/3.4.2/22.03-lts-sp4/Dockerfile +++ b/loki/3.4.2/22.03-lts-sp4/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 -RUN dnf update && dnf install -y shadow-utils +RUN dnf install -y shadow-utils && dnf clean all RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ -- Gitee From 443cc6b5a30a010a6071d2bf7fc332a5c7dd0ef0 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:12:24 +0000 Subject: [PATCH 11/12] update loki/3.4.2/22.03-lts-sp3/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/22.03-lts-sp3/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loki/3.4.2/22.03-lts-sp3/Dockerfile b/loki/3.4.2/22.03-lts-sp3/Dockerfile index 46ad502..c40ca80 100644 --- a/loki/3.4.2/22.03-lts-sp3/Dockerfile +++ b/loki/3.4.2/22.03-lts-sp3/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 -RUN dnf update && dnf install -y shadow-utils +RUN dnf install -y shadow-utils && dnf clean all RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ -- Gitee From 9be2588bec4d7b88ec49d8ed5ecc67283749a078 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 24 Feb 2025 09:12:39 +0000 Subject: [PATCH 12/12] update loki/3.4.2/22.03-lts-sp1/Dockerfile. Signed-off-by: openeuler_bot <673672685@qq.com> --- loki/3.4.2/22.03-lts-sp1/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loki/3.4.2/22.03-lts-sp1/Dockerfile b/loki/3.4.2/22.03-lts-sp1/Dockerfile index e92b452..e62695a 100644 --- a/loki/3.4.2/22.03-lts-sp1/Dockerfile +++ b/loki/3.4.2/22.03-lts-sp1/Dockerfile @@ -5,7 +5,7 @@ ARG TARGETARCH ARG BUILDARCH ARG VERSION=3.4.2 -RUN dnf update && dnf install -y shadow-utils +RUN dnf install -y shadow-utils && dnf clean all RUN if [ "$TARGETARCH" = "amd64" ]; then \ BUILDARCH="x86_64"; \ -- Gitee