File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ WORKDIR /src
1111COPY ./*.sh ./
1212RUN 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
1515WORKDIR /src
1616COPY ./*.sln ./
1717# Using `Doppler.` prefix to avoid docker confuse symlink with directories
@@ -33,7 +33,7 @@ RUN dotnet test
3333FROM build AS publish
3434RUN 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
3737WORKDIR /app
3838EXPOSE 80
3939COPY --from=publish /app/publish .
Original file line number Diff line number Diff line change 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
44WORKDIR /app
55EXPOSE 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
88WORKDIR /src
99COPY ["Doppler.HtmlEditorApi/Doppler.HtmlEditorApi.csproj" , "Doppler.HtmlEditorApi/" ]
1010RUN dotnet restore "Doppler.HtmlEditorApi/Doppler.HtmlEditorApi.csproj"
You can’t perform that action at this time.
0 commit comments