Skip to content

Commit ad7fdb6

Browse files
Merge pull request #183 from FromDoppler/renovate/net-core-docker-containers
chore(deps): update .net core docker containers
2 parents 723d307 + 571a728 commit ad7fdb6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Dockerfile

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

13-
FROM mcr.microsoft.com/dotnet/sdk:7.0.202-bullseye-slim AS restore
13+
FROM mcr.microsoft.com/dotnet/sdk:7.0.203-bullseye-slim AS restore
1414
WORKDIR /src
1515
COPY ./*.sln ./
1616
COPY */*.csproj ./
@@ -29,7 +29,7 @@ RUN dotnet test
2929
FROM build AS publish
3030
RUN dotnet publish "./Doppler.HelloMicroservice/Doppler.HelloMicroservice.csproj" -c Release -o /app/publish
3131

32-
FROM mcr.microsoft.com/dotnet/aspnet:7.0.4-bullseye-slim AS final
32+
FROM mcr.microsoft.com/dotnet/aspnet:7.0.5-bullseye-slim AS final
3333
# We need these changes in openssl.cnf to access to our SQL Server instances in QA and INT environments
3434
# See more information in https://stackoverflow.com/questions/56473656/cant-connect-to-sql-server-named-instance-from-asp-net-core-running-in-docker/59391426#59391426
3535
RUN sed -i 's/DEFAULT@SECLEVEL=2/DEFAULT@SECLEVEL=1/g' /etc/ssl/openssl.cnf \

Doppler.HelloMicroservice.Test/Doppler.HelloMicroservice.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.4" />
11+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.5" />
1212
<PackageReference Include="Moq" Version="4.18.4" />
1313
<PackageReference Include="xunit" Version="2.4.2" />
1414
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">

Doppler.HelloMicroservice/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.4-bullseye-slim AS base
3+
FROM mcr.microsoft.com/dotnet/aspnet:7.0.5-bullseye-slim AS base
44
WORKDIR /app
55
EXPOSE 80
66

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

Doppler.HelloMicroservice/Doppler.HelloMicroservice.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<ItemGroup>
99
<PackageReference Include="Hellang.Middleware.ProblemDetails" Version="6.5.1" />
10-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.4" />
10+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.5" />
1111
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.18.1" />
1212
<PackageReference Include="Serilog.Extensions.Hosting" Version="5.0.1" />
1313
<PackageReference Include="Serilog.Settings.Configuration" Version="3.4.0" />

0 commit comments

Comments
 (0)