From 30d6143c1aa3dbbdacf1b381f690f59e08d5c544 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Wed, 10 Dec 2025 00:05:20 +0000 Subject: [PATCH] 24.03-lts-sp2 update dotnet-runtime to 10.0.1 --- .../10.0.1/24.03-lts-sp2/Dockerfile | 26 +++++++++++++++++++ Others/dotnet-runtime/README.md | 1 + Others/dotnet-runtime/doc/image-info.yml | 1 + Others/dotnet-runtime/meta.yml | 4 ++- 4 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 Others/dotnet-runtime/10.0.1/24.03-lts-sp2/Dockerfile diff --git a/Others/dotnet-runtime/10.0.1/24.03-lts-sp2/Dockerfile b/Others/dotnet-runtime/10.0.1/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..9ff7e730 --- /dev/null +++ b/Others/dotnet-runtime/10.0.1/24.03-lts-sp2/Dockerfile @@ -0,0 +1,26 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=10.0.1 + +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/Others/dotnet-runtime/README.md b/Others/dotnet-runtime/README.md index b9f221a5..afa15195 100644 --- a/Others/dotnet-runtime/README.md +++ b/Others/dotnet-runtime/README.md @@ -17,6 +17,7 @@ Learn more about Dotnet Runtime on [learn.microsoft.com](https://learn.microsoft The tag of each `dotnet-runtime` docker image is consist of the version of `dotnet-runtime` and the version of basic image. The details are as follows | Tag | Currently | Architectures | |----------|-------------|------------------| +|[10.0.1-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/10.0.1/24.03-lts-sp2/Dockerfile) | dotnet 10.0.1 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[10.0.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/10.0.0/24.03-lts-sp2/Dockerfile) | dotnet 10.0.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[8.0.3-oe2203sp3](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/8.0.3/22.03-lts-sp3/Dockerfile)| Dotnet-runtime 8.0.3 on openEuler 22.03-LTS-SP3 | amd64, arm64 | |[8.0.7-oe2203sp3](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/8.0.7/22.03-lts-sp3/Dockerfile)| Dotnet-runtime 8.0.7 on openEuler 22.03-LTS-SP3 | amd64, arm64 | diff --git a/Others/dotnet-runtime/doc/image-info.yml b/Others/dotnet-runtime/doc/image-info.yml index d247ca1b..53101eab 100644 --- a/Others/dotnet-runtime/doc/image-info.yml +++ b/Others/dotnet-runtime/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[10.0.1-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/10.0.1/24.03-lts-sp2/Dockerfile) | dotnet 10.0.1 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[10.0.0-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/10.0.0/24.03-lts-sp2/Dockerfile) | dotnet 10.0.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[8.0.3-oe2203sp3](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/8.0.3/22.03-lts-sp3/Dockerfile)| Dotnet-runtime 8.0.3 on openEuler 22.03-LTS-SP3 | amd64, arm64 | |[8.0.7-oe2203sp3](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/dotnet-runtime/8.0.7/22.03-lts-sp3/Dockerfile)| Dotnet-runtime 8.0.7 on openEuler 22.03-LTS-SP3 | amd64, arm64 | diff --git a/Others/dotnet-runtime/meta.yml b/Others/dotnet-runtime/meta.yml index 1e3ecab1..c568a8ab 100644 --- a/Others/dotnet-runtime/meta.yml +++ b/Others/dotnet-runtime/meta.yml @@ -29,4 +29,6 @@ 9.0.8-oe2403sp1: path: 9.0.8/24.03-lts-sp1/Dockerfile 10.0.0-oe2403sp2: - path: 10.0.0/24.03-lts-sp2/Dockerfile \ No newline at end of file + path: 10.0.0/24.03-lts-sp2/Dockerfile +10.0.1-oe2403sp2: + path: 10.0.1/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee