Skip to content
Open
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
6 changes: 3 additions & 3 deletions manifest.versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"alpine|9.0|floating-tag-version": "$(alpine|floating-tag-version)",
"alpine|8.0|floating-tag-version": "$(alpine|floating-tag-version)",

"aspire-dashboard|build-version": "13.1.0-preview.1.25575.6",
"aspire-dashboard|build-version": "13.1.0-preview.1.25578.2",
"aspire-dashboard|product-version": "13.1.0",
"aspire-dashboard|fixed-tag": "13.1.0",
"aspire-dashboard|minor-tag": "13.1",
"aspire-dashboard|major-tag": "13",
"aspire-dashboard|linux|x64|sha": "209376c1e6846cb7d163fdc7e7460930d9576eff9ccdf9580a4734c0b16c9f24ea99197be946e4ab75046cb16506fe4029d224c5778b96c0332dedd754bfae06",
"aspire-dashboard|linux|arm64|sha": "bb7e16f2e0f7b20c8db5a2d7db41689015b0d19d2c47b91aa3fd3401afcce3f42b823143a0cc2be3797715b9fee5e3dc21c3fbfc26693d95494be5413e6b727d",
"aspire-dashboard|linux|x64|sha": "931150a2d193b253251bc3fbf3b44e4274e37e5f97619030e5adb42db5370795640b69a3fa66bd4e9a2d6a84290b6b8a91d95ae8b0ef59c43b94dc7dd5e8b126",
"aspire-dashboard|linux|arm64|sha": "4ed9e2431c001540a50af5aeec0c01967be26641518d472f9bdcb106b74368f08823df4b616d5f4654b351ebe5114351396d5159ce416e49a87f3cffd984c884",
"aspire-dashboard|base-url|main": "$(base-url|public|preview|nightly)",
"aspire-dashboard|base-url|nightly": "$(base-url|public|preview|nightly)",

Expand Down
4 changes: 2 additions & 2 deletions src/aspire-dashboard/amd64/Dockerfile
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=13.1.0-preview.1.25575.6 \
RUN dotnet_aspire_version=13.1.0-preview.1.25578.2 \
&& curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-x64.zip \
&& aspire_dashboard_sha512='209376c1e6846cb7d163fdc7e7460930d9576eff9ccdf9580a4734c0b16c9f24ea99197be946e4ab75046cb16506fe4029d224c5778b96c0332dedd754bfae06' \
&& aspire_dashboard_sha512='931150a2d193b253251bc3fbf3b44e4274e37e5f97619030e5adb42db5370795640b69a3fa66bd4e9a2d6a84290b6b8a91d95ae8b0ef59c43b94dc7dd5e8b126' \
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
&& mkdir --parents /app \
&& unzip aspire_dashboard.zip -d /app \
Expand Down
4 changes: 2 additions & 2 deletions src/aspire-dashboard/arm64v8/Dockerfile
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=13.1.0-preview.1.25575.6 \
RUN dotnet_aspire_version=13.1.0-preview.1.25578.2 \
&& curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-arm64.zip \
&& aspire_dashboard_sha512='bb7e16f2e0f7b20c8db5a2d7db41689015b0d19d2c47b91aa3fd3401afcce3f42b823143a0cc2be3797715b9fee5e3dc21c3fbfc26693d95494be5413e6b727d' \
&& aspire_dashboard_sha512='4ed9e2431c001540a50af5aeec0c01967be26641518d472f9bdcb106b74368f08823df4b616d5f4654b351ebe5114351396d5159ce416e49a87f3cffd984c884' \
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
&& mkdir --parents /app \
&& unzip aspire_dashboard.zip -d /app \
Expand Down