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 0000000000000000000000000000000000000000..9ff7e730814aa34fb1d629689f52dd55b3a01361 --- /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 b9f221a56250fa426da3e68ca444d18707a34ff9..afa15195e9fccfe930d9d6714f1f42899e29d11c 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 d247ca1ba6a02d4f44fb131c7f9b7a9d573e6474..53101eab9400690d1fb39099f4b99fdb3e3900e4 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 1e3ecab1f1623b07150c71e2ff6b85008d4fe8cd..c568a8ab74d285f8c2574859e321deb04a610fa4 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