From 6fa88382942d87aaf2d42fc81b640de6d9852efe Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 01:36:21 +0000 Subject: [PATCH 1/5] 24.03-lts update dotnet-runtime to 8.0.10 --- dotnet-runtime/8.0.10/24.03-lts/Dockerfile | 26 ++++++++++++++++++++++ dotnet-runtime/meta.yml | 4 +++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/8.0.10/24.03-lts/Dockerfile diff --git a/dotnet-runtime/8.0.10/24.03-lts/Dockerfile b/dotnet-runtime/8.0.10/24.03-lts/Dockerfile new file mode 100644 index 00000000..1bbdf31f --- /dev/null +++ b/dotnet-runtime/8.0.10/24.03-lts/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:24.03-lts +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=8.0.10 + +ENV ASPNETCORE_URLS=http://+:8080 \ + DOTNET_RUNNING_IN_CONTAINER=true \ + DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="arm64"; \ + fi && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet && tar -zxvf dotnet.tar.gz -C /dotnet && \ + mv /dotnet /usr/share/dotnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-runtime/meta.yml b/dotnet-runtime/meta.yml index 9f1b948e..71ca84e4 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -1,4 +1,6 @@ 8.0.3-oe2203sp3: path: dotnet-runtime/8.0.3/22.03-lts-sp3/Dockerfile 8.0.8-oe2203sp3: - path: dotnet-runtime/8.0.8/22.03-lts-sp3/Dockerfile \ No newline at end of file + path: dotnet-runtime/8.0.8/22.03-lts-sp3/Dockerfile +8.0.10-oe2403lts: + path: dotnet-runtime/8.0.10/24.03-lts/Dockerfile \ No newline at end of file -- Gitee From 840db1e2e65d20193eab678ecab4370cd4ade701 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 01:36:44 +0000 Subject: [PATCH 2/5] 22.03-lts-sp3 update dotnet-runtime to 8.0.10 --- .../8.0.10/22.03-lts-sp3/Dockerfile | 26 +++++++++++++++++++ dotnet-runtime/meta.yml | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile diff --git a/dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile b/dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile new file mode 100644 index 00000000..b5d681b3 --- /dev/null +++ b/dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp3 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=8.0.10 + +ENV ASPNETCORE_URLS=http://+:8080 \ + DOTNET_RUNNING_IN_CONTAINER=true \ + DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="arm64"; \ + fi && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet && tar -zxvf dotnet.tar.gz -C /dotnet && \ + mv /dotnet /usr/share/dotnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-runtime/meta.yml b/dotnet-runtime/meta.yml index 71ca84e4..e38ea601 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -3,4 +3,6 @@ 8.0.8-oe2203sp3: path: dotnet-runtime/8.0.8/22.03-lts-sp3/Dockerfile 8.0.10-oe2403lts: - path: dotnet-runtime/8.0.10/24.03-lts/Dockerfile \ No newline at end of file + path: dotnet-runtime/8.0.10/24.03-lts/Dockerfile +8.0.10-oe2203sp3: + path: dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile \ No newline at end of file -- Gitee From 7a315749d8a555dd4e25f0044ebb27cc11038d3b Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 01:37:08 +0000 Subject: [PATCH 3/5] 22.03-lts-sp4 update dotnet-runtime to 8.0.10 --- .../8.0.10/22.03-lts-sp4/Dockerfile | 26 +++++++++++++++++++ dotnet-runtime/meta.yml | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile diff --git a/dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile b/dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile new file mode 100644 index 00000000..3f258d40 --- /dev/null +++ b/dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp4 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=8.0.10 + +ENV ASPNETCORE_URLS=http://+:8080 \ + DOTNET_RUNNING_IN_CONTAINER=true \ + DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="arm64"; \ + fi && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet && tar -zxvf dotnet.tar.gz -C /dotnet && \ + mv /dotnet /usr/share/dotnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-runtime/meta.yml b/dotnet-runtime/meta.yml index e38ea601..59af4fcb 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -5,4 +5,6 @@ 8.0.10-oe2403lts: path: dotnet-runtime/8.0.10/24.03-lts/Dockerfile 8.0.10-oe2203sp3: - path: dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile \ No newline at end of file + path: dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile +8.0.10-oe2203sp4: + path: dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile \ No newline at end of file -- Gitee From 268ec9182324abc250fb61c7e26af40a8f49093a Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 01:37:31 +0000 Subject: [PATCH 4/5] 22.03-lts-sp1 update dotnet-runtime to 8.0.10 --- .../8.0.10/22.03-lts-sp1/Dockerfile | 26 +++++++++++++++++++ dotnet-runtime/meta.yml | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/8.0.10/22.03-lts-sp1/Dockerfile diff --git a/dotnet-runtime/8.0.10/22.03-lts-sp1/Dockerfile b/dotnet-runtime/8.0.10/22.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..909f636d --- /dev/null +++ b/dotnet-runtime/8.0.10/22.03-lts-sp1/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:22.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=8.0.10 + +ENV ASPNETCORE_URLS=http://+:8080 \ + DOTNET_RUNNING_IN_CONTAINER=true \ + DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="arm64"; \ + fi && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet && tar -zxvf dotnet.tar.gz -C /dotnet && \ + mv /dotnet /usr/share/dotnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-runtime/meta.yml b/dotnet-runtime/meta.yml index 59af4fcb..dc5c47ce 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -7,4 +7,6 @@ 8.0.10-oe2203sp3: path: dotnet-runtime/8.0.10/22.03-lts-sp3/Dockerfile 8.0.10-oe2203sp4: - path: dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile \ No newline at end of file + path: dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile +8.0.10-oe2203sp1: + path: dotnet-runtime/8.0.10/22.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee From 5203d3aa2952b58f9da085ae7d0f44ea4eb0b0e1 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Tue, 15 Oct 2024 01:37:56 +0000 Subject: [PATCH 5/5] 20.03-lts-sp4 update dotnet-runtime to 8.0.10 --- .../8.0.10/20.03-lts-sp4/Dockerfile | 26 +++++++++++++++++++ dotnet-runtime/meta.yml | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/8.0.10/20.03-lts-sp4/Dockerfile diff --git a/dotnet-runtime/8.0.10/20.03-lts-sp4/Dockerfile b/dotnet-runtime/8.0.10/20.03-lts-sp4/Dockerfile new file mode 100644 index 00000000..b502aea3 --- /dev/null +++ b/dotnet-runtime/8.0.10/20.03-lts-sp4/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:20.03-lts-sp4 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=8.0.10 + +ENV ASPNETCORE_URLS=http://+:8080 \ + DOTNET_RUNNING_IN_CONTAINER=true \ + DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="arm64"; \ + fi && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet && tar -zxvf dotnet.tar.gz -C /dotnet && \ + mv /dotnet /usr/share/dotnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-runtime/meta.yml b/dotnet-runtime/meta.yml index dc5c47ce..27a12966 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -9,4 +9,6 @@ 8.0.10-oe2203sp4: path: dotnet-runtime/8.0.10/22.03-lts-sp4/Dockerfile 8.0.10-oe2203sp1: - path: dotnet-runtime/8.0.10/22.03-lts-sp1/Dockerfile \ No newline at end of file + path: dotnet-runtime/8.0.10/22.03-lts-sp1/Dockerfile +8.0.10-oe2003sp4: + path: dotnet-runtime/8.0.10/20.03-lts-sp4/Dockerfile \ No newline at end of file -- Gitee