Skip to content

Commit 571a728

Browse files
renovate[bot]andresmoschini
authored andcommitted
chore(deps): update .net core docker containers
1 parent b7383e0 commit 571a728

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
@@ -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/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"

0 commit comments

Comments
 (0)