You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+2-2Lines changed: 2 additions & 2 deletions
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.202-bullseye-slim AS restore
13
+
FROM mcr.microsoft.com/dotnet/sdk:7.0.203-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.4-bullseye-slim AS final
32
+
FROM mcr.microsoft.com/dotnet/aspnet:7.0.5-bullseye-slim AS final
33
33
# We need these changes in openssl.cnf to access to our SQL Server instances in QA and INT environments
34
34
# 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
35
35
RUN sed -i 's/DEFAULT@SECLEVEL=2/DEFAULT@SECLEVEL=1/g' /etc/ssl/openssl.cnf \
0 commit comments