From e2be2b5f18f1842355a6bb4b13b7a448e1cb9a56 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 14:33:10 +0000 Subject: [PATCH 1/4] 24.03-lts update dotnet-runtime to 9.0.2 --- dotnet-runtime/9.0.2/24.03-lts/Dockerfile | 26 +++++++++++++++++++++++ dotnet-runtime/meta.yml | 4 +++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/9.0.2/24.03-lts/Dockerfile diff --git a/dotnet-runtime/9.0.2/24.03-lts/Dockerfile b/dotnet-runtime/9.0.2/24.03-lts/Dockerfile new file mode 100644 index 00000000..a4d51c17 --- /dev/null +++ b/dotnet-runtime/9.0.2/24.03-lts/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:24.03-lts +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=9.0.2 + +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 6c0f770c..21bea742 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -13,4 +13,6 @@ 8.0.10-oe2203sp4: path: dotnet-runtime/8.0.10/22.03-lts-sp4/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 +9.0.2-oe2403lts: + path: dotnet-runtime/9.0.2/24.03-lts/Dockerfile \ No newline at end of file -- Gitee From 0470688d70506c915102444e90cd4fc0b6276657 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 14:34:22 +0000 Subject: [PATCH 2/4] 22.03-lts-sp3 update dotnet-runtime to 9.0.2 --- dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile | 26 +++++++++++++++++++ dotnet-runtime/meta.yml | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile diff --git a/dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile b/dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile new file mode 100644 index 00000000..190ee943 --- /dev/null +++ b/dotnet-runtime/9.0.2/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=9.0.2 + +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 21bea742..354aa4cf 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -15,4 +15,6 @@ 8.0.10-oe2403lts: path: dotnet-runtime/8.0.10/24.03-lts/Dockerfile 9.0.2-oe2403lts: - path: dotnet-runtime/9.0.2/24.03-lts/Dockerfile \ No newline at end of file + path: dotnet-runtime/9.0.2/24.03-lts/Dockerfile +9.0.2-oe2203sp3: + path: dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile \ No newline at end of file -- Gitee From 1640debad93da0039042a7cb4ca991cab37bdbb0 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 14:35:03 +0000 Subject: [PATCH 3/4] 22.03-lts-sp4 update dotnet-runtime to 9.0.2 --- dotnet-runtime/9.0.2/22.03-lts-sp4/Dockerfile | 26 +++++++++++++++++++ dotnet-runtime/meta.yml | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/9.0.2/22.03-lts-sp4/Dockerfile diff --git a/dotnet-runtime/9.0.2/22.03-lts-sp4/Dockerfile b/dotnet-runtime/9.0.2/22.03-lts-sp4/Dockerfile new file mode 100644 index 00000000..1f5e1199 --- /dev/null +++ b/dotnet-runtime/9.0.2/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=9.0.2 + +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 354aa4cf..fdc0971c 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -17,4 +17,6 @@ 9.0.2-oe2403lts: path: dotnet-runtime/9.0.2/24.03-lts/Dockerfile 9.0.2-oe2203sp3: - path: dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile \ No newline at end of file + path: dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile +9.0.2-oe2203sp4: + path: dotnet-runtime/9.0.2/22.03-lts-sp4/Dockerfile \ No newline at end of file -- Gitee From d5ae72aefba712bdd44f49e02939398a7d575fa3 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Thu, 20 Feb 2025 14:36:02 +0000 Subject: [PATCH 4/4] 22.03-lts-sp1 update dotnet-runtime to 9.0.2 --- dotnet-runtime/9.0.2/22.03-lts-sp1/Dockerfile | 26 +++++++++++++++++++ dotnet-runtime/meta.yml | 4 ++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 dotnet-runtime/9.0.2/22.03-lts-sp1/Dockerfile diff --git a/dotnet-runtime/9.0.2/22.03-lts-sp1/Dockerfile b/dotnet-runtime/9.0.2/22.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..f57c7447 --- /dev/null +++ b/dotnet-runtime/9.0.2/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=9.0.2 + +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 fdc0971c..5b11b4b7 100644 --- a/dotnet-runtime/meta.yml +++ b/dotnet-runtime/meta.yml @@ -19,4 +19,6 @@ 9.0.2-oe2203sp3: path: dotnet-runtime/9.0.2/22.03-lts-sp3/Dockerfile 9.0.2-oe2203sp4: - path: dotnet-runtime/9.0.2/22.03-lts-sp4/Dockerfile \ No newline at end of file + path: dotnet-runtime/9.0.2/22.03-lts-sp4/Dockerfile +9.0.2-oe2203sp1: + path: dotnet-runtime/9.0.2/22.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee