Skip to content

Commit c974c7e

Browse files
committed
Update .NET Monitor 7 to Preview 8
1 parent 7a83682 commit c974c7e

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

README.monitor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Tags | Dockerfile | OS Version
4848
##### .NET Monitor Preview Tags
4949
Tags | Dockerfile | OS Version
5050
-----------| -------------| -------------
51-
7.0.0-preview.7-alpine-amd64, 7.0-alpine-amd64, 7-alpine-amd64, 7.0.0-preview.7-alpine, 7.0-alpine, 7-alpine, 7.0.0-preview.7, 7.0, 7 | [Dockerfile](https://github.com/dotnet/dotnet-docker/blob/main/src/monitor/7.0/alpine/amd64/Dockerfile) | Alpine 3.16
51+
7.0.0-preview.8-alpine-amd64, 7.0-alpine-amd64, 7-alpine-amd64, 7.0.0-preview.8-alpine, 7.0-alpine, 7-alpine, 7.0.0-preview.8, 7.0, 7 | [Dockerfile](https://github.com/dotnet/dotnet-docker/blob/main/src/monitor/7.0/alpine/amd64/Dockerfile) | Alpine 3.16
5252

5353
## Linux arm64 Tags
5454
Tags | Dockerfile | OS Version
@@ -58,7 +58,7 @@ Tags | Dockerfile | OS Version
5858
##### .NET Monitor Preview Tags
5959
Tags | Dockerfile | OS Version
6060
-----------| -------------| -------------
61-
7.0.0-preview.7-alpine-arm64v8, 7.0-alpine-arm64v8, 7-alpine-arm64v8, 7.0.0-preview.7-alpine, 7.0-alpine, 7-alpine, 7.0.0-preview.7, 7.0, 7 | [Dockerfile](https://github.com/dotnet/dotnet-docker/blob/main/src/monitor/7.0/alpine/arm64v8/Dockerfile) | Alpine 3.16
61+
7.0.0-preview.8-alpine-arm64v8, 7.0-alpine-arm64v8, 7-alpine-arm64v8, 7.0.0-preview.8-alpine, 7.0-alpine, 7-alpine, 7.0.0-preview.8, 7.0, 7 | [Dockerfile](https://github.com/dotnet/dotnet-docker/blob/main/src/monitor/7.0/alpine/arm64v8/Dockerfile) | Alpine 3.16
6262

6363
You can retrieve a list of all available tags for dotnet/monitor at https://mcr.microsoft.com/v2/dotnet/monitor/tags/list.
6464
<!--End of generated tags-->

manifest.versions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@
8989
"monitor|6.2|product-version": "6.2.2",
9090
"monitor|6.2|sha": "5d5df17e81ed66e644dc7323e89caee10f7eadbf62a28e0443e9fe12df1c5283fce2ebf6bc4dc2e5004c3c9e044101fc131ff293f382f15a32c91a6e159619d7",
9191

92-
"monitor|7.0|build-version": "7.0.0-preview.7.22401.1",
93-
"monitor|7.0|product-version": "7.0.0-preview.7",
94-
"monitor|7.0|sha": "be75249b24f98d7ac3640f9cde7199863617e93e370623631a72e7eed5d7ab468297ec758f91ea9fbe5512241de6e83f1fd3786aeb5f172b16a24ff4b6213005",
92+
"monitor|7.0|build-version": "7.0.0-preview.8.22457.4",
93+
"monitor|7.0|product-version": "7.0.0-preview.8",
94+
"monitor|7.0|sha": "525961b17612d42ee8e9f1a19e298b360e2945373a86d2ed2a769ab05e13d7be4c5cc8cb301257469be5a8baa9baeba657a5404abf8e82ba715eaf29d0f99cf2",
9595

9696
"netstandard-targeting-pack-2.1.0|linux-rpm|x64|sha": "fab41a86b9182b276992795247868c093890c6b3d5739376374a302430229624944998e054de0ff99bddd9459fc9543636df1ebd5392db069ae953ac17ea2880",
9797

src/monitor/7.0/alpine/amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ARG SDK_REPO=mcr.microsoft.com/dotnet/sdk
55
FROM $SDK_REPO:7.0.100-rc.1-alpine3.16-amd64 AS installer
66

77
# Install .NET Monitor
8-
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.7.22401.1
8+
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.8.22457.4
99
RUN wget -O dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg https://dotnetcli.azureedge.net/dotnet/diagnostics/monitor/$DOTNET_MONITOR_VERSION/dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg \
10-
&& dotnetmonitor_sha512='be75249b24f98d7ac3640f9cde7199863617e93e370623631a72e7eed5d7ab468297ec758f91ea9fbe5512241de6e83f1fd3786aeb5f172b16a24ff4b6213005' \
10+
&& dotnetmonitor_sha512='525961b17612d42ee8e9f1a19e298b360e2945373a86d2ed2a769ab05e13d7be4c5cc8cb301257469be5a8baa9baeba657a5404abf8e82ba715eaf29d0f99cf2' \
1111
&& echo "$dotnetmonitor_sha512 dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg" | sha512sum -c - \
1212
&& dotnet tool install dotnet-monitor --tool-path /app --add-source / --version $DOTNET_MONITOR_VERSION --framework net7.0 --no-cache \
1313
# To reduce image size, remove all non-net7.0 TFMs

src/monitor/7.0/alpine/arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ARG SDK_REPO=mcr.microsoft.com/dotnet/sdk
55
FROM $SDK_REPO:7.0.100-rc.1-alpine3.16-arm64v8 AS installer
66

77
# Install .NET Monitor
8-
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.7.22401.1
8+
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.8.22457.4
99
RUN wget -O dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg https://dotnetcli.azureedge.net/dotnet/diagnostics/monitor/$DOTNET_MONITOR_VERSION/dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg \
10-
&& dotnetmonitor_sha512='be75249b24f98d7ac3640f9cde7199863617e93e370623631a72e7eed5d7ab468297ec758f91ea9fbe5512241de6e83f1fd3786aeb5f172b16a24ff4b6213005' \
10+
&& dotnetmonitor_sha512='525961b17612d42ee8e9f1a19e298b360e2945373a86d2ed2a769ab05e13d7be4c5cc8cb301257469be5a8baa9baeba657a5404abf8e82ba715eaf29d0f99cf2' \
1111
&& echo "$dotnetmonitor_sha512 dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg" | sha512sum -c - \
1212
&& dotnet tool install dotnet-monitor --tool-path /app --add-source / --version $DOTNET_MONITOR_VERSION --framework net7.0 --no-cache \
1313
# To reduce image size, remove all non-net7.0 TFMs

src/monitor/7.0/cbl-mariner-distroless/amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ARG SDK_REPO=mcr.microsoft.com/dotnet/sdk
55
FROM $SDK_REPO:7.0.100-rc.1-cbl-mariner2.0-amd64 AS installer
66

77
# Install .NET Monitor
8-
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.7.22401.1
8+
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.8.22457.4
99
RUN curl -fSL --output dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg https://dotnetcli.azureedge.net/dotnet/diagnostics/monitor/$DOTNET_MONITOR_VERSION/dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg \
10-
&& dotnetmonitor_sha512='be75249b24f98d7ac3640f9cde7199863617e93e370623631a72e7eed5d7ab468297ec758f91ea9fbe5512241de6e83f1fd3786aeb5f172b16a24ff4b6213005' \
10+
&& dotnetmonitor_sha512='525961b17612d42ee8e9f1a19e298b360e2945373a86d2ed2a769ab05e13d7be4c5cc8cb301257469be5a8baa9baeba657a5404abf8e82ba715eaf29d0f99cf2' \
1111
&& echo "$dotnetmonitor_sha512 dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg" | sha512sum -c - \
1212
&& dotnet tool install dotnet-monitor --tool-path /app --add-source / --version $DOTNET_MONITOR_VERSION --framework net7.0 --no-cache \
1313
# To reduce image size, remove all non-net7.0 TFMs

src/monitor/7.0/cbl-mariner-distroless/arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ARG SDK_REPO=mcr.microsoft.com/dotnet/sdk
55
FROM $SDK_REPO:7.0.100-rc.1-cbl-mariner2.0-arm64v8 AS installer
66

77
# Install .NET Monitor
8-
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.7.22401.1
8+
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.8.22457.4
99
RUN curl -fSL --output dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg https://dotnetcli.azureedge.net/dotnet/diagnostics/monitor/$DOTNET_MONITOR_VERSION/dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg \
10-
&& dotnetmonitor_sha512='be75249b24f98d7ac3640f9cde7199863617e93e370623631a72e7eed5d7ab468297ec758f91ea9fbe5512241de6e83f1fd3786aeb5f172b16a24ff4b6213005' \
10+
&& dotnetmonitor_sha512='525961b17612d42ee8e9f1a19e298b360e2945373a86d2ed2a769ab05e13d7be4c5cc8cb301257469be5a8baa9baeba657a5404abf8e82ba715eaf29d0f99cf2' \
1111
&& echo "$dotnetmonitor_sha512 dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg" | sha512sum -c - \
1212
&& dotnet tool install dotnet-monitor --tool-path /app --add-source / --version $DOTNET_MONITOR_VERSION --framework net7.0 --no-cache \
1313
# To reduce image size, remove all non-net7.0 TFMs

src/monitor/7.0/cbl-mariner/amd64/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ARG SDK_REPO=mcr.microsoft.com/dotnet/sdk
55
FROM $SDK_REPO:7.0.100-rc.1-cbl-mariner2.0-amd64 AS installer
66

77
# Install .NET Monitor
8-
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.7.22401.1
8+
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.8.22457.4
99
RUN curl -fSL --output dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg https://dotnetcli.azureedge.net/dotnet/diagnostics/monitor/$DOTNET_MONITOR_VERSION/dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg \
10-
&& dotnetmonitor_sha512='be75249b24f98d7ac3640f9cde7199863617e93e370623631a72e7eed5d7ab468297ec758f91ea9fbe5512241de6e83f1fd3786aeb5f172b16a24ff4b6213005' \
10+
&& dotnetmonitor_sha512='525961b17612d42ee8e9f1a19e298b360e2945373a86d2ed2a769ab05e13d7be4c5cc8cb301257469be5a8baa9baeba657a5404abf8e82ba715eaf29d0f99cf2' \
1111
&& echo "$dotnetmonitor_sha512 dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg" | sha512sum -c - \
1212
&& dotnet tool install dotnet-monitor --tool-path /app --add-source / --version $DOTNET_MONITOR_VERSION --framework net7.0 --no-cache \
1313
# To reduce image size, remove all non-net7.0 TFMs

src/monitor/7.0/cbl-mariner/arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ARG SDK_REPO=mcr.microsoft.com/dotnet/sdk
55
FROM $SDK_REPO:7.0.100-rc.1-cbl-mariner2.0-arm64v8 AS installer
66

77
# Install .NET Monitor
8-
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.7.22401.1
8+
ENV DOTNET_MONITOR_VERSION=7.0.0-preview.8.22457.4
99
RUN curl -fSL --output dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg https://dotnetcli.azureedge.net/dotnet/diagnostics/monitor/$DOTNET_MONITOR_VERSION/dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg \
10-
&& dotnetmonitor_sha512='be75249b24f98d7ac3640f9cde7199863617e93e370623631a72e7eed5d7ab468297ec758f91ea9fbe5512241de6e83f1fd3786aeb5f172b16a24ff4b6213005' \
10+
&& dotnetmonitor_sha512='525961b17612d42ee8e9f1a19e298b360e2945373a86d2ed2a769ab05e13d7be4c5cc8cb301257469be5a8baa9baeba657a5404abf8e82ba715eaf29d0f99cf2' \
1111
&& echo "$dotnetmonitor_sha512 dotnet-monitor.$DOTNET_MONITOR_VERSION.nupkg" | sha512sum -c - \
1212
&& dotnet tool install dotnet-monitor --tool-path /app --add-source / --version $DOTNET_MONITOR_VERSION --framework net7.0 --no-cache \
1313
# To reduce image size, remove all non-net7.0 TFMs

0 commit comments

Comments
 (0)