Skip to content
Closed
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 @@ -119,13 +119,13 @@ Limits are per-resource. For example, a `MaxLogCount` value of 10,000 configures

Tags | Dockerfile | OS Version
-----------| -------------| -------------
13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0
13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/amd64/Dockerfile) | Azure Linux 3.0

### Linux arm64 Tags

Tags | Dockerfile | OS Version
-----------| -------------| -------------
13.1.0, 13.1, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.0
13.2.0, 13.2, 13, latest | [Dockerfile](src/aspire-dashboard/arm64v8/Dockerfile) | Azure Linux 3.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
12 changes: 6 additions & 6 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.25604.1",
"aspire-dashboard|product-version": "13.1.0",
"aspire-dashboard|fixed-tag": "13.1.0",
"aspire-dashboard|minor-tag": "13.1",
"aspire-dashboard|build-version": "13.2.0-preview.1.25610.10",
"aspire-dashboard|product-version": "13.2.0",
"aspire-dashboard|fixed-tag": "13.2.0",
"aspire-dashboard|minor-tag": "13.2",
"aspire-dashboard|major-tag": "13",
"aspire-dashboard|linux|x64|sha": "687f04d2d1ee90cc504eef699c6b9c0a784d89216dab2ec4b5ff1bd5656bfa0e64155c76058437628c04c766c3896597ca5f1c97ef520ba0f97863d0f3c1f2b4",
"aspire-dashboard|linux|arm64|sha": "d787e4cc094cee3ddc2af79d6ab8c5174b548e48c8eed866ec2edd152396256aff1f9996e780d919f2fbc1fb8af08712eb23479542053f29a0f7fcbd2a7bc706",
"aspire-dashboard|linux|x64|sha": "0a38a164b068458ca477652b21cfcaa23d4217d6470b38fcb3c317b4505facbdbff412f2d2611e33fe762ee441b0920664a72d9a61c4a27d3947235ca655aeeb",
"aspire-dashboard|linux|arm64|sha": "849a99d5c70a4d22476cf64b99bb79ef9629633b1d92f021e5662877f1fd1631c544b33708b63a25da7d8dd944cbc11e33a5c6df280be2b679ea8bb8adc5d360",
"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.25604.1 \
RUN dotnet_aspire_version=13.2.0-preview.1.25610.10 \
&& 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='687f04d2d1ee90cc504eef699c6b9c0a784d89216dab2ec4b5ff1bd5656bfa0e64155c76058437628c04c766c3896597ca5f1c97ef520ba0f97863d0f3c1f2b4' \
&& aspire_dashboard_sha512='0a38a164b068458ca477652b21cfcaa23d4217d6470b38fcb3c317b4505facbdbff412f2d2611e33fe762ee441b0920664a72d9a61c4a27d3947235ca655aeeb' \
&& 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.25604.1 \
RUN dotnet_aspire_version=13.2.0-preview.1.25610.10 \
&& 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='d787e4cc094cee3ddc2af79d6ab8c5174b548e48c8eed866ec2edd152396256aff1f9996e780d919f2fbc1fb8af08712eb23479542053f29a0f7fcbd2a7bc706' \
&& aspire_dashboard_sha512='849a99d5c70a4d22476cf64b99bb79ef9629633b1d92f021e5662877f1fd1631c544b33708b63a25da7d8dd944cbc11e33a5c6df280be2b679ea8bb8adc5d360' \
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
&& mkdir --parents /app \
&& unzip aspire_dashboard.zip -d /app \
Expand Down
Loading