-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 3.0 aspnetcore-runtime arm64 images (#794)
- Loading branch information
1 parent
8246e49
commit edc9829
Showing
5 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM microsoft/dotnet-nightly:3.0-runtime-deps-bionic-arm64v8 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
curl \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install ASP.NET Core | ||
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663 | ||
|
||
RUN curl -SL --output aspnetcore.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$ASPNETCORE_VERSION/aspnetcore-runtime-$ASPNETCORE_VERSION-linux-arm64.tar.gz \ | ||
&& aspnetcore_sha512='a913ac79d8505f185a91772f5f05fcfdc2ca8f23b7d6fd5268397b7a36bb316df45f4308ae4ef30b44d4a4e835306f9f4e10937ed5aca4cff9035d6cc9a998c4' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& mkdir -p /usr/share/dotnet \ | ||
&& tar -zxf aspnetcore.tar.gz -C /usr/share/dotnet \ | ||
&& rm aspnetcore.tar.gz \ | ||
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM microsoft/dotnet-nightly:3.0-runtime-deps-stretch-slim-arm64v8 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
curl \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install ASP.NET Core | ||
ENV ASPNETCORE_VERSION 3.0.0-alpha1-10663 | ||
|
||
RUN curl -SL --output aspnetcore.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/aspnetcore/Runtime/$ASPNETCORE_VERSION/aspnetcore-runtime-$ASPNETCORE_VERSION-linux-arm64.tar.gz \ | ||
&& aspnetcore_sha512='a913ac79d8505f185a91772f5f05fcfdc2ca8f23b7d6fd5268397b7a36bb316df45f4308ae4ef30b44d4a4e835306f9f4e10937ed5aca4cff9035d6cc9a998c4' \ | ||
&& echo "$aspnetcore_sha512 aspnetcore.tar.gz" | sha512sum -c - \ | ||
&& mkdir -p /usr/share/dotnet \ | ||
&& tar -zxf aspnetcore.tar.gz -C /usr/share/dotnet \ | ||
&& rm aspnetcore.tar.gz \ | ||
&& ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters