Skip to content

Commit c9c077b

Browse files
Merge pull request #294 from FromDoppler/renovate/net-core-docker-containers
chore(deps): update .net core docker containers
2 parents 54e811c + e2459be commit c9c077b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WORKDIR /src
1111
COPY ./*.sh ./
1212
RUN shellcheck -e SC1091,SC1090 ./*.sh
1313

14-
FROM mcr.microsoft.com/dotnet/sdk:7.0.400-bullseye-slim AS restore
14+
FROM mcr.microsoft.com/dotnet/sdk:7.0.410-bullseye-slim AS restore
1515
WORKDIR /src
1616
COPY ./*.sln ./
1717
# Using `Doppler.` prefix to avoid docker confuse symlink with directories
@@ -33,7 +33,7 @@ RUN dotnet test
3333
FROM build AS publish
3434
RUN dotnet publish "./Doppler.HtmlEditorApi/Doppler.HtmlEditorApi.csproj" -c Release -o /app/publish
3535

36-
FROM mcr.microsoft.com/dotnet/aspnet:7.0.10-bullseye-slim AS final
36+
FROM mcr.microsoft.com/dotnet/aspnet:7.0.20-bullseye-slim AS final
3737
WORKDIR /app
3838
EXPOSE 80
3939
COPY --from=publish /app/publish .

Doppler.HtmlEditorApi/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
22

3-
FROM mcr.microsoft.com/dotnet/aspnet:7.0.10-bullseye-slim AS base
3+
FROM mcr.microsoft.com/dotnet/aspnet:7.0.20-bullseye-slim AS base
44
WORKDIR /app
55
EXPOSE 80
66

7-
FROM mcr.microsoft.com/dotnet/sdk:7.0.400-bullseye-slim AS build
7+
FROM mcr.microsoft.com/dotnet/sdk:7.0.410-bullseye-slim AS build
88
WORKDIR /src
99
COPY ["Doppler.HtmlEditorApi/Doppler.HtmlEditorApi.csproj", "Doppler.HtmlEditorApi/"]
1010
RUN dotnet restore "Doppler.HtmlEditorApi/Doppler.HtmlEditorApi.csproj"

0 commit comments

Comments
 (0)