Skip to content

Commit 2846fa3

Browse files
authored
Merge pull request #43 from LaithSaq/fix-image-version-in-docker-file
Fix runtime image version in Dockerfile
2 parents e9fd98c + 56ab41f commit 2846fa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN dotnet restore MiddleMail.Server/MiddleMail.Server.csproj
1616

1717
RUN dotnet publish MiddleMail.Server/MiddleMail.Server.csproj -c Release -o out
1818

19-
FROM mcr.microsoft.com/dotnet/aspnet:6. AS runtime
19+
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS runtime
2020
WORKDIR /app
2121
COPY --from=build /app/src/out ./
2222
ENTRYPOINT ["dotnet", "MiddleMail.Server.dll"]

0 commit comments

Comments
 (0)