-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathDockerfile
More file actions
29 lines (23 loc) · 1.4 KB
/
Dockerfile
File metadata and controls
29 lines (23 loc) · 1.4 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-deps
# Installer image
FROM $REPO:11.0.0-preview.2-alpine3.23-extra-arm32v7 AS installer
# Retrieve ASP.NET Composite Runtime
RUN aspnetcore_version=11.0.0-preview.2.26159.112 \
&& wget \
https://ci.dot.net/public/aspnetcore/Runtime/$aspnetcore_version/aspnetcore-runtime-composite-$aspnetcore_version-linux-musl-arm.tar.gz \
https://ci.dot.net/public-checksums/aspnetcore/Runtime/$aspnetcore_version/aspnetcore-runtime-composite-$aspnetcore_version-linux-musl-arm.tar.gz.sha512 \
&& echo "$(cat aspnetcore-runtime-composite-$aspnetcore_version-linux-musl-arm.tar.gz.sha512) aspnetcore-runtime-composite-$aspnetcore_version-linux-musl-arm.tar.gz" | sha512sum -c - \
&& mkdir --parents /dotnet \
&& tar --gzip --extract --no-same-owner --file aspnetcore-runtime-composite-$aspnetcore_version-linux-musl-arm.tar.gz --directory /dotnet \
&& rm \
aspnetcore-runtime-composite-$aspnetcore_version-linux-musl-arm.tar.gz \
aspnetcore-runtime-composite-$aspnetcore_version-linux-musl-arm.tar.gz.sha512
# ASP.NET Composite Image
FROM $REPO:11.0.0-preview.2-alpine3.23-extra-arm32v7
ENV \
# .NET Runtime version
DOTNET_VERSION=11.0.0-preview.2.26159.112 \
# ASP.NET Core version
ASPNET_VERSION=11.0.0-preview.2.26159.112
COPY --from=installer ["/dotnet", "/usr/share/dotnet"]
RUN ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet