-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (22 loc) · 1.19 KB
/
Dockerfile
File metadata and controls
29 lines (22 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
ARG REPO=mcr.microsoft.com/dotnet/runtime
# Installer image
FROM $REPO:10.0.5-azurelinux3.0-arm64v8 AS installer
RUN tdnf install -y \
tar \
&& tdnf clean all
# Retrieve ASP.NET Core
RUN aspnetcore_version=10.0.5 \
&& curl --fail --show-error --location \
--remote-name https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$aspnetcore_version/aspnetcore-runtime-$aspnetcore_version-linux-arm64.tar.gz \
--remote-name https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$aspnetcore_version/aspnetcore-runtime-$aspnetcore_version-linux-arm64.tar.gz.sha512 \
&& sha512sum -c aspnetcore-runtime-$aspnetcore_version-linux-arm64.tar.gz.sha512 \
&& mkdir --parents /dotnet \
&& tar --gzip --extract --no-same-owner --file aspnetcore-runtime-$aspnetcore_version-linux-arm64.tar.gz --directory /dotnet ./shared/Microsoft.AspNetCore.App \
&& rm \
aspnetcore-runtime-$aspnetcore_version-linux-arm64.tar.gz \
aspnetcore-runtime-$aspnetcore_version-linux-arm64.tar.gz.sha512
# ASP.NET Core image
FROM $REPO:10.0.5-azurelinux3.0-arm64v8
# ASP.NET Core version
ENV ASPNET_VERSION=10.0.5
COPY --from=installer ["/dotnet", "/usr/share/dotnet"]