File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Doppler.HelloMicroservice Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ WORKDIR /src
10
10
COPY ./*.sh ./
11
11
RUN shellcheck -e SC1091,SC1090 ./*.sh
12
12
13
- FROM mcr.microsoft.com/dotnet/sdk:7.0.305 -bullseye-slim AS restore
13
+ FROM mcr.microsoft.com/dotnet/sdk:7.0.404 -bullseye-slim AS restore
14
14
WORKDIR /src
15
15
COPY ./*.sln ./
16
16
COPY */*.csproj ./
@@ -29,7 +29,7 @@ RUN dotnet test
29
29
FROM build AS publish
30
30
RUN dotnet publish "./Doppler.HelloMicroservice/Doppler.HelloMicroservice.csproj" -c Release -o /app/publish
31
31
32
- FROM mcr.microsoft.com/dotnet/aspnet:7.0.8 -bullseye-slim AS final
32
+ FROM mcr.microsoft.com/dotnet/aspnet:7.0.14 -bullseye-slim AS final
33
33
WORKDIR /app
34
34
EXPOSE 80
35
35
COPY --from=publish /app/publish .
Original file line number Diff line number Diff line change 1
1
# See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
2
2
3
- FROM mcr.microsoft.com/dotnet/aspnet:7.0.8 -bullseye-slim AS base
3
+ FROM mcr.microsoft.com/dotnet/aspnet:7.0.14 -bullseye-slim AS base
4
4
WORKDIR /app
5
5
EXPOSE 80
6
6
7
- FROM mcr.microsoft.com/dotnet/sdk:7.0.305 -bullseye-slim AS build
7
+ FROM mcr.microsoft.com/dotnet/sdk:7.0.404 -bullseye-slim AS build
8
8
WORKDIR /src
9
9
COPY ["Doppler.HelloMicroservice/Doppler.HelloMicroservice.csproj" , "Doppler.HelloMicroservice/" ]
10
10
RUN dotnet restore "Doppler.HelloMicroservice/Doppler.HelloMicroservice.csproj"
You can’t perform that action at this time.
0 commit comments