-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (19 loc) · 1.05 KB
/
Dockerfile
File metadata and controls
25 lines (19 loc) · 1.05 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
ARG REPO=mcr.microsoft.com/dotnet/runtime
# Installer image
FROM $REPO:9.0.14-alpine3.23-extra-amd64 AS installer
# Retrieve ASP.NET Core
RUN aspnetcore_version=9.0.14 \
&& wget \
https://builds.dotnet.microsoft.com/dotnet/aspnetcore/Runtime/$aspnetcore_version/aspnetcore-runtime-$aspnetcore_version-linux-musl-x64.tar.gz \
https://builds.dotnet.microsoft.com/dotnet/checksums/$aspnetcore_version-sha.txt \
&& awk -v file="aspnetcore-runtime-$aspnetcore_version-linux-musl-x64.tar.gz" '{gsub(/\r/, "")} $2 == file' $aspnetcore_version-sha.txt | sha512sum -c \
&& mkdir --parents /dotnet \
&& tar --gzip --extract --no-same-owner --file aspnetcore-runtime-$aspnetcore_version-linux-musl-x64.tar.gz --directory /dotnet ./shared/Microsoft.AspNetCore.App \
&& rm \
aspnetcore-runtime-$aspnetcore_version-linux-musl-x64.tar.gz \
$aspnetcore_version-sha.txt
# ASP.NET Core image
FROM $REPO:9.0.14-alpine3.23-extra-amd64
# ASP.NET Core version
ENV ASPNET_VERSION=9.0.14
COPY --from=installer ["/dotnet", "/usr/share/dotnet"]