Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating Aspire to 9.0.1 preview 1 #6037

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.aspire-dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ Limits are per-resource. For example, a `MaxLogCount` value of 10,000 configures
Tags | Dockerfile | OS Version
-----------| -------------| -------------
8.2.1, 8.2, 8 | [Dockerfile](src/aspire-dashboard/8.2/cbl-mariner-distroless/amd64/Dockerfile) | CBL-Mariner 2.0
9.0.0-preview.5, 9.0-preview, 9-preview, latest | [Dockerfile](src/aspire-dashboard/9.0/cbl-mariner-distroless/amd64/Dockerfile) | CBL-Mariner 2.0
9.0.1-preview.1, 9.0-preview, 9-preview, latest | [Dockerfile](src/aspire-dashboard/9.0/cbl-mariner-distroless/amd64/Dockerfile) | CBL-Mariner 2.0

### Linux arm64 Tags

Tags | Dockerfile | OS Version
-----------| -------------| -------------
8.2.1, 8.2, 8 | [Dockerfile](src/aspire-dashboard/8.2/cbl-mariner-distroless/arm64v8/Dockerfile) | CBL-Mariner 2.0
9.0.0-preview.5, 9.0-preview, 9-preview, latest | [Dockerfile](src/aspire-dashboard/9.0/cbl-mariner-distroless/arm64v8/Dockerfile) | CBL-Mariner 2.0
9.0.1-preview.1, 9.0-preview, 9-preview, latest | [Dockerfile](src/aspire-dashboard/9.0/cbl-mariner-distroless/arm64v8/Dockerfile) | CBL-Mariner 2.0
<!--End of generated tags-->

*Tags not listed in the table above are not supported. See the [Supported Tags Policy](https://github.com/dotnet/dotnet-docker/blob/main/documentation/supported-tags.md). See the [full list of tags](https://mcr.microsoft.com/v2/dotnet/nightly/aspire-dashboard/tags/list) for all supported and unsupported tags.*
Expand Down
8 changes: 4 additions & 4 deletions manifest.versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"aspire-dashboard|8.2|base-url|main": "$(base-url|public|preview|nightly)",
"aspire-dashboard|8.2|base-url|nightly": "$(base-url|public|preview|nightly)",

"aspire-dashboard|9.0|build-version": "9.0.0-preview.5.24528.2",
"aspire-dashboard|9.0|product-version": "9.0.0-preview.5",
"aspire-dashboard|9.0|build-version": "9.0.1-preview.1.24557.2",
"aspire-dashboard|9.0|product-version": "9.0.1-preview.1",
"aspire-dashboard|9.0|fixed-tag": "$(aspire-dashboard|9.0|product-version)",
"aspire-dashboard|9.0|minor-tag": "9.0-preview",
"aspire-dashboard|9|major-tag": "9-preview",
"aspire-dashboard|9.0|linux|x64|sha": "c64bd99012441d37b3f12a5985f9ea4073cdae60ecd91f7fb1338e2b3070af83a05b12325197d76d6eb806a4567f362a44c4d2d82d024000ab0c5088f3b1c772",
"aspire-dashboard|9.0|linux|arm64|sha": "3fcd601a346df0171c6281ae225a31c0119c93cc3d94ab0bcd5e13e91805b368293512a190873a236746a1056af8fe0911def48105e9bc6afce852e72bd9f4a0",
"aspire-dashboard|9.0|linux|x64|sha": "665ae24484620d8fecc000074c15393a6b0efc7f5678d7415603b674e9b5509f756c335161fb45afaef56c9800477e7a300fc337dfbac575ec7dd60f00052c77",
"aspire-dashboard|9.0|linux|arm64|sha": "a9ddb5ea8214a0ec78784f9ca95f6ea60dc0baf189722a3ac1fee46da3d2d01f08b785d1f75e5ee72cd0401429527c49100b11e846ed7d6b7705952e73c64c95",
"aspire-dashboard|9.0|base-url|main": "$(base-url|public|preview|nightly)",
"aspire-dashboard|9.0|base-url|nightly": "$(base-url|public|preview|nightly)",

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN tdnf install -y \
&& tdnf clean all

# Retrieve Aspire Dashboard
RUN dotnet_aspire_version=9.0.0-preview.5.24528.2 \
RUN dotnet_aspire_version=9.0.1-preview.1.24557.2 \
&& curl -fSL --output aspire_dashboard.zip https://dotnetbuilds.azureedge.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-x64.zip \
&& aspire_dashboard_sha512='c64bd99012441d37b3f12a5985f9ea4073cdae60ecd91f7fb1338e2b3070af83a05b12325197d76d6eb806a4567f362a44c4d2d82d024000ab0c5088f3b1c772' \
&& aspire_dashboard_sha512='665ae24484620d8fecc000074c15393a6b0efc7f5678d7415603b674e9b5509f756c335161fb45afaef56c9800477e7a300fc337dfbac575ec7dd60f00052c77' \
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
&& mkdir -p /app \
&& unzip aspire_dashboard.zip -d /app \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN tdnf install -y \
&& tdnf clean all

# Retrieve Aspire Dashboard
RUN dotnet_aspire_version=9.0.0-preview.5.24528.2 \
RUN dotnet_aspire_version=9.0.1-preview.1.24557.2 \
&& curl -fSL --output aspire_dashboard.zip https://dotnetbuilds.azureedge.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-arm64.zip \
&& aspire_dashboard_sha512='3fcd601a346df0171c6281ae225a31c0119c93cc3d94ab0bcd5e13e91805b368293512a190873a236746a1056af8fe0911def48105e9bc6afce852e72bd9f4a0' \
&& aspire_dashboard_sha512='a9ddb5ea8214a0ec78784f9ca95f6ea60dc0baf189722a3ac1fee46da3d2d01f08b785d1f75e5ee72cd0401429527c49100b11e846ed7d6b7705952e73c64c95' \
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
&& mkdir -p /app \
&& unzip aspire_dashboard.zip -d /app \
Expand Down
Loading