Skip to content

Commit

Permalink
Update Docker Images
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmanuelthiel committed Mar 25, 2024
1 parent 6f1cecd commit e2f2e9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#######################################################
# Download the official ASP.NET Core SDK image
# to build the project while creating the docker image
FROM mcr.microsoft.com/dotnet/sdk:6 as build
FROM mcr.microsoft.com/dotnet/sdk:6.0 as build
WORKDIR /app

# Restore NuGet packages
Expand All @@ -27,7 +27,7 @@ RUN dotnet test --configuration Release MicroCommunication.Api.Tests/MicroCommun
#######################################################
# Download the official ASP.NET Core Runtime image
# to run the compiled application
FROM mcr.microsoft.com/dotnet/aspnet:6
FROM mcr.microsoft.com/dotnet/aspnet:6.0
WORKDIR /app

# Open port
Expand Down
4 changes: 2 additions & 2 deletions src/random/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#######################################################
# Download the official ASP.NET Core SDK image
# to build the project while creating the docker image
FROM mcr.microsoft.com/dotnet/sdk:6 as build
FROM mcr.microsoft.com/dotnet/sdk:6.0 as build
WORKDIR /app

# Restore NuGet packages
Expand All @@ -26,7 +26,7 @@ RUN dotnet test --configuration Release MicroCommunication.Random.Tests/MicroCom
#######################################################
# Download the official ASP.NET Core Runtime image
# to run the compiled application
FROM mcr.microsoft.com/dotnet/aspnet:6
FROM mcr.microsoft.com/dotnet/aspnet:6.0
WORKDIR /app

# Open port
Expand Down

0 comments on commit e2f2e9c

Please sign in to comment.