From f3f27720178b6f0646f7e418d943b71c724b66c7 Mon Sep 17 00:00:00 2001 From: Deron Smith Date: Wed, 20 Mar 2024 15:35:07 -0400 Subject: [PATCH] nuget package updates and base docker image version update for prisma --- Data.Simulate/Data.Simulate.csproj | 53 ++++++++++++----------- Data.Source/Data.Source.csproj | 57 +++++++++++++------------ Utilities/Utilities.csproj | 67 +++++++++++++++--------------- Web.Services/Dockerfile | 4 +- 4 files changed, 89 insertions(+), 92 deletions(-) diff --git a/Data.Simulate/Data.Simulate.csproj b/Data.Simulate/Data.Simulate.csproj index b22e33cf..11910ab6 100644 --- a/Data.Simulate/Data.Simulate.csproj +++ b/Data.Simulate/Data.Simulate.csproj @@ -1,27 +1,26 @@ - - - - net6.0 - - - - bin\ - - - - bin\ - - - - - - - - - - - - - - - + + + + net6.0 + + + + bin\ + + + + bin\ + + + + + + + + + + + + + + diff --git a/Data.Source/Data.Source.csproj b/Data.Source/Data.Source.csproj index d79f4c6e..2af7d655 100644 --- a/Data.Source/Data.Source.csproj +++ b/Data.Source/Data.Source.csproj @@ -1,29 +1,28 @@ - - - - net6.0 - - - - bin\ - - - - bin\ - - - - - - - - - - - - - - - - - + + + + net6.0 + + + + bin\ + + + + bin\ + + + + + + + + + + + + + + + + diff --git a/Utilities/Utilities.csproj b/Utilities/Utilities.csproj index e138c8ed..a84a4aff 100644 --- a/Utilities/Utilities.csproj +++ b/Utilities/Utilities.csproj @@ -1,35 +1,34 @@ - - - - net6.0 - - - - bin\ - - - - bin\ - - - - - - - - - - - - - - - - - - - - - - + + + + net6.0 + + + + bin\ + + + + bin\ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Web.Services/Dockerfile b/Web.Services/Dockerfile index 7619cfaa..dab30b02 100644 --- a/Web.Services/Dockerfile +++ b/Web.Services/Dockerfile @@ -1,8 +1,8 @@ -FROM mcr.microsoft.com/dotnet/aspnet:6.0.24-alpine3.18 AS base +FROM mcr.microsoft.com/dotnet/aspnet:6.0.28-alpine3.19 AS base WORKDIR /app EXPOSE 8080 -FROM mcr.microsoft.com/dotnet/sdk:6.0.416-alpine3.18 AS build +FROM mcr.microsoft.com/dotnet/sdk:6.0.420-alpine3.19 AS build WORKDIR /src COPY . ./ WORKDIR /src/Web.Services