From a8b468e20265ce7d150c65703bd1b0398384aec3 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 14 Oct 2024 07:38:20 +0000 Subject: [PATCH 1/5] 24.03-lts update dotnet-aspnet to 8.0.10 --- dotnet-aspnet/8.0.10/24.03-lts/Dockerfile | 31 +++++++++++++++++++++++ dotnet-aspnet/meta.yml | 4 ++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 dotnet-aspnet/8.0.10/24.03-lts/Dockerfile diff --git a/dotnet-aspnet/8.0.10/24.03-lts/Dockerfile b/dotnet-aspnet/8.0.10/24.03-lts/Dockerfile new file mode 100644 index 00000000..44c6b157 --- /dev/null +++ b/dotnet-aspnet/8.0.10/24.03-lts/Dockerfile @@ -0,0 +1,31 @@ +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 && \ + yum update -y && yum install -y libicu && yum clean all && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + curl -fSL -o aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${VERSION}/aspnetcore-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet-runtime && tar -zxvf dotnet.tar.gz -C /dotnet-runtime && \ + mkdir -p /dotnet-aspnet && tar -oxzf aspnetcore.tar.gz -C /dotnet-aspnet ./shared/Microsoft.AspNetCore.App && \ + mv /dotnet-runtime /usr/share/dotnet && \ + cp -rf /dotnet-aspnet/* /usr/share/dotnet/ && \ + rm -f aspnetcore.tar.gz && rm -rf /dotnet-aspnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-aspnet/meta.yml b/dotnet-aspnet/meta.yml index cac69ffb..8b38f7d5 100644 --- a/dotnet-aspnet/meta.yml +++ b/dotnet-aspnet/meta.yml @@ -1,4 +1,6 @@ 8.0.3-oe2203sp3: path: dotnet-aspnet/8.0.3/22.03-lts-sp3/Dockerfile 8.0.8-oe2203sp3: - path: dotnet-aspnet/8.0.8/22.03-lts-sp3/Dockerfile \ No newline at end of file + path: dotnet-aspnet/8.0.8/22.03-lts-sp3/Dockerfile +8.0.10-oe2403lts: + path: dotnet-aspnet/8.0.10/24.03-lts/Dockerfile \ No newline at end of file -- Gitee From decf079db28ed76e10d47f0ad470070848c2dc65 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 14 Oct 2024 07:38:44 +0000 Subject: [PATCH 2/5] 22.03-lts-sp3 update dotnet-aspnet to 8.0.10 --- dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile | 31 +++++++++++++++++++ dotnet-aspnet/meta.yml | 4 ++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile diff --git a/dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile b/dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile new file mode 100644 index 00000000..d98240fe --- /dev/null +++ b/dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile @@ -0,0 +1,31 @@ +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 && \ + yum update -y && yum install -y libicu && yum clean all && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + curl -fSL -o aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${VERSION}/aspnetcore-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet-runtime && tar -zxvf dotnet.tar.gz -C /dotnet-runtime && \ + mkdir -p /dotnet-aspnet && tar -oxzf aspnetcore.tar.gz -C /dotnet-aspnet ./shared/Microsoft.AspNetCore.App && \ + mv /dotnet-runtime /usr/share/dotnet && \ + cp -rf /dotnet-aspnet/* /usr/share/dotnet/ && \ + rm -f aspnetcore.tar.gz && rm -rf /dotnet-aspnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-aspnet/meta.yml b/dotnet-aspnet/meta.yml index 8b38f7d5..72adfc4f 100644 --- a/dotnet-aspnet/meta.yml +++ b/dotnet-aspnet/meta.yml @@ -3,4 +3,6 @@ 8.0.8-oe2203sp3: path: dotnet-aspnet/8.0.8/22.03-lts-sp3/Dockerfile 8.0.10-oe2403lts: - path: dotnet-aspnet/8.0.10/24.03-lts/Dockerfile \ No newline at end of file + path: dotnet-aspnet/8.0.10/24.03-lts/Dockerfile +8.0.10-oe2203sp3: + path: dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile \ No newline at end of file -- Gitee From 4ebb28a8b3018a97252b46c65bdf6466afb3a4e8 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 14 Oct 2024 07:39:07 +0000 Subject: [PATCH 3/5] 22.03-lts-sp4 update dotnet-aspnet to 8.0.10 --- dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile | 31 +++++++++++++++++++ dotnet-aspnet/meta.yml | 4 ++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile diff --git a/dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile b/dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile new file mode 100644 index 00000000..9423176d --- /dev/null +++ b/dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile @@ -0,0 +1,31 @@ +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 && \ + yum update -y && yum install -y libicu && yum clean all && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + curl -fSL -o aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${VERSION}/aspnetcore-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet-runtime && tar -zxvf dotnet.tar.gz -C /dotnet-runtime && \ + mkdir -p /dotnet-aspnet && tar -oxzf aspnetcore.tar.gz -C /dotnet-aspnet ./shared/Microsoft.AspNetCore.App && \ + mv /dotnet-runtime /usr/share/dotnet && \ + cp -rf /dotnet-aspnet/* /usr/share/dotnet/ && \ + rm -f aspnetcore.tar.gz && rm -rf /dotnet-aspnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-aspnet/meta.yml b/dotnet-aspnet/meta.yml index 72adfc4f..c98fe984 100644 --- a/dotnet-aspnet/meta.yml +++ b/dotnet-aspnet/meta.yml @@ -5,4 +5,6 @@ 8.0.10-oe2403lts: path: dotnet-aspnet/8.0.10/24.03-lts/Dockerfile 8.0.10-oe2203sp3: - path: dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile \ No newline at end of file + path: dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile +8.0.10-oe2203sp4: + path: dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile \ No newline at end of file -- Gitee From 6b6ab9b7a2ac7a2ed9ff6c802b157c05745a98b0 Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 14 Oct 2024 07:39:30 +0000 Subject: [PATCH 4/5] 22.03-lts-sp1 update dotnet-aspnet to 8.0.10 --- dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile | 31 +++++++++++++++++++ dotnet-aspnet/meta.yml | 4 ++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile diff --git a/dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile b/dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..853ba71f --- /dev/null +++ b/dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile @@ -0,0 +1,31 @@ +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 && \ + yum update -y && yum install -y libicu && yum clean all && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + curl -fSL -o aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${VERSION}/aspnetcore-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet-runtime && tar -zxvf dotnet.tar.gz -C /dotnet-runtime && \ + mkdir -p /dotnet-aspnet && tar -oxzf aspnetcore.tar.gz -C /dotnet-aspnet ./shared/Microsoft.AspNetCore.App && \ + mv /dotnet-runtime /usr/share/dotnet && \ + cp -rf /dotnet-aspnet/* /usr/share/dotnet/ && \ + rm -f aspnetcore.tar.gz && rm -rf /dotnet-aspnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-aspnet/meta.yml b/dotnet-aspnet/meta.yml index c98fe984..b20fa2c5 100644 --- a/dotnet-aspnet/meta.yml +++ b/dotnet-aspnet/meta.yml @@ -7,4 +7,6 @@ 8.0.10-oe2203sp3: path: dotnet-aspnet/8.0.10/22.03-lts-sp3/Dockerfile 8.0.10-oe2203sp4: - path: dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile \ No newline at end of file + path: dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile +8.0.10-oe2203sp1: + path: dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee From c901a4bafea0b6e06c999ec8b9bba16a3cc30b6e Mon Sep 17 00:00:00 2001 From: openeuler_bot <673672685@qq.com> Date: Mon, 14 Oct 2024 07:39:53 +0000 Subject: [PATCH 5/5] 20.03-lts-sp4 update dotnet-aspnet to 8.0.10 --- dotnet-aspnet/8.0.10/20.03-lts-sp4/Dockerfile | 31 +++++++++++++++++++ dotnet-aspnet/meta.yml | 4 ++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 dotnet-aspnet/8.0.10/20.03-lts-sp4/Dockerfile diff --git a/dotnet-aspnet/8.0.10/20.03-lts-sp4/Dockerfile b/dotnet-aspnet/8.0.10/20.03-lts-sp4/Dockerfile new file mode 100644 index 00000000..63ede388 --- /dev/null +++ b/dotnet-aspnet/8.0.10/20.03-lts-sp4/Dockerfile @@ -0,0 +1,31 @@ +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 && \ + yum update -y && yum install -y libicu && yum clean all && \ + curl -fSL -o dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/${VERSION}/dotnet-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + curl -fSL -o aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${VERSION}/aspnetcore-runtime-${VERSION}-linux-${BUILDARCH}.tar.gz && \ + mkdir -p /dotnet-runtime && tar -zxvf dotnet.tar.gz -C /dotnet-runtime && \ + mkdir -p /dotnet-aspnet && tar -oxzf aspnetcore.tar.gz -C /dotnet-aspnet ./shared/Microsoft.AspNetCore.App && \ + mv /dotnet-runtime /usr/share/dotnet && \ + cp -rf /dotnet-aspnet/* /usr/share/dotnet/ && \ + rm -f aspnetcore.tar.gz && rm -rf /dotnet-aspnet && \ + rm -f dotnet.tar.gz + +RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet + +ENTRYPOINT [ "dotnet" ] + +CMD [ "--info" ] diff --git a/dotnet-aspnet/meta.yml b/dotnet-aspnet/meta.yml index b20fa2c5..9d4e62e7 100644 --- a/dotnet-aspnet/meta.yml +++ b/dotnet-aspnet/meta.yml @@ -9,4 +9,6 @@ 8.0.10-oe2203sp4: path: dotnet-aspnet/8.0.10/22.03-lts-sp4/Dockerfile 8.0.10-oe2203sp1: - path: dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile \ No newline at end of file + path: dotnet-aspnet/8.0.10/22.03-lts-sp1/Dockerfile +8.0.10-oe2003sp4: + path: dotnet-aspnet/8.0.10/20.03-lts-sp4/Dockerfile \ No newline at end of file -- Gitee