Skip to content

Commit

Permalink
Removing patch version from the dotnet runtime and aspnet images (#719)
Browse files Browse the repository at this point in the history
Changing
mcr.microsoft.com/dotnet/runtime:6.0.0 to mcr.microsoft.com/dotnet/runtime:6.0
mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim to mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
  • Loading branch information
kshyju authored Jun 20, 2022
1 parent 3f08329 commit ab41a05
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Include ASP.NET Core shared framework from dotnet/aspnet image.
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS aspnet6

FROM mcr.microsoft.com/dotnet/runtime:6.0.0
FROM mcr.microsoft.com/dotnet/runtime:6.0
ARG HOST_VERSION

COPY --from=runtime-image [ "/FuncExtensionBundles", "/FuncExtensionBundles" ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && \
# Include ASP.NET Core shared framework from dotnet/aspnet image.
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS aspnet6

FROM mcr.microsoft.com/dotnet/runtime:6.0.0
FROM mcr.microsoft.com/dotnet/runtime:6.0
ARG HOST_VERSION

ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && \
# Include ASP.NET Core shared framework from dotnet/aspnet image.
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS aspnet6

FROM mcr.microsoft.com/dotnet/runtime:6.0.0
FROM mcr.microsoft.com/dotnet/runtime:6.0
ARG HOST_VERSION

ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
ARG HOST_VERSION

# Powershell worker requires 3.1 for now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && \
rm -f /$EXTENSION_BUNDLE_FILENAME_V3 &&\
find /FuncExtensionBundles/ -type f -exec chmod 644 {} \;

FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
ARG HOST_VERSION

# Powershell worker requires 3.1 for now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && \
rm -f /$EXTENSION_BUNDLE_FILENAME_V3 &&\
find /FuncExtensionBundles/ -type f -exec chmod 644 {} \;

FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
ARG HOST_VERSION

# Powershell worker requires 3.1 for now
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
ARG HOST_VERSION

# set runtime env variables
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && \
rm -f /$EXTENSION_BUNDLE_FILENAME_V3 &&\
find /FuncExtensionBundles/ -type f -exec chmod 644 {} \;

FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
ARG HOST_VERSION

# set runtime env variables
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update && \
rm -f /$EXTENSION_BUNDLE_FILENAME_V3 &&\
find /FuncExtensionBundles/ -type f -exec chmod 644 {} \;

FROM mcr.microsoft.com/dotnet/aspnet:6.0.0-bullseye-slim
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bullseye-slim
ARG HOST_VERSION

# set runtime env variables
Expand Down

0 comments on commit ab41a05

Please sign in to comment.