From 5632ff3d9fef16a460cb1676e1d7bbab310720fd Mon Sep 17 00:00:00 2001 From: alirehmani Date: Mon, 6 May 2024 13:26:31 +0500 Subject: [PATCH] update --- definition-managing-api | 2 +- src/Dockerfile | 46 +++++++++++++++++++++++++++++++++++++ src/Managing.Api/Dockerfile | 12 +++++----- 3 files changed, 53 insertions(+), 7 deletions(-) create mode 100644 src/Dockerfile diff --git a/definition-managing-api b/definition-managing-api index 3b828e2..6106e88 100644 --- a/definition-managing-api +++ b/definition-managing-api @@ -1,4 +1,4 @@ { "schemaVersion": 2, - "dockerfilePath": "./src/Managing.Api/Dockerfile" + "dockerfilePath": "./src/Dockerfile" } \ No newline at end of file diff --git a/src/Dockerfile b/src/Dockerfile new file mode 100644 index 0000000..0e113cd --- /dev/null +++ b/src/Dockerfile @@ -0,0 +1,46 @@ +# Use the official Microsoft ASP.NET Core runtime as the base image. +FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base +WORKDIR /app +EXPOSE 80 +EXPOSE 443 + +# Use the official Microsoft .NET SDK image to build the code. +FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build +WORKDIR /buildapp +COPY ["/Managing.Api/Managing.Api.csproj", "Managing.Api/"] +COPY ["/Managing.Bootstrap/Managing.Bootstrap.csproj", "Managing.Bootstrap/"] +COPY ["/Managing.Infrastructure.Storage/Managing.Infrastructure.Storage.csproj", "Managing.Infrastructure.Storage/"] +COPY ["/Managing.Application/Managing.Application.csproj", "Managing.Application/"] +COPY ["/Managing.Infrastructure.MongoDb/Managing.Infrastructure.MongoDb.csproj", "Managing.Infrastructure.MongoDb/"] +COPY ["/Managing.Common/Managing.Common.csproj", "Managing.Common/"] +COPY ["/Managing.Core/Managing.Core.csproj", "Managing.Core/"] +COPY ["/Managing.Application.Abstractions/Managing.Application.Abstractions.csproj", "Managing.Application.Abstractions/"] +COPY ["/Managing.Domain/Managing.Domain.csproj", "Managing.Domain/"] +COPY ["/Managing.Application.Workers/Managing.Application.Workers.csproj", "Managing.Application.Workers/"] +COPY ["/Managing.Infrastructure.Messengers/Managing.Infrastructure.Messengers.csproj", "Managing.Infrastructure.Messengers/"] +COPY ["/Managing.Infrastructure.Exchanges/Managing.Infrastructure.Exchanges.csproj", "Managing.Infrastructure.Exchanges/"] +COPY ["/Managing.Infrastructure.Database/Managing.Infrastructure.Databases.csproj", "Managing.Infrastructure.Database/"] + +# Restore dependencies for all projects +RUN dotnet restore "/buildapp/Managing.Api/Managing.Api.csproj" + +# Copy everything else and build +#COPY . . + +#RUN ls -la /buildapp + +#WORKDIR "/buildapp/Managing.Api" + +#RUN ls -la /buildapp + +#RUN dotnet build "Managing.Api.csproj" -c Release -o /app/build + +# FROM build AS publish +# RUN dotnet publish "Managing.Api.csproj" -c Release -o /app/publish + +# FROM base AS final +# WORKDIR /app +# COPY --from=publish /app/publish . +# #COPY Managing.Api/managing_cert.pfx . +# # Managing.Api/appsettings.Lowpro.json . +# ENTRYPOINT ["dotnet", "Managing.Api.dll"] diff --git a/src/Managing.Api/Dockerfile b/src/Managing.Api/Dockerfile index dec463a..3953125 100644 --- a/src/Managing.Api/Dockerfile +++ b/src/Managing.Api/Dockerfile @@ -25,15 +25,15 @@ COPY ["/src/Managing.Infrastructure.Database/Managing.Infrastructure.Databases.c RUN dotnet restore "/buildapp/Managing.Api/Managing.Api.csproj" # Copy everything else and build -COPY . . - -RUN ls -la /buildapp - -WORKDIR "/buildapp/Managing.Api" +#COPY . . #RUN ls -la /buildapp -RUN dotnet build "Managing.Api.csproj" -c Release -o /app/build +#WORKDIR "/buildapp/Managing.Api" + +#RUN ls -la /buildapp + +#RUN dotnet build "Managing.Api.csproj" -c Release -o /app/build # FROM build AS publish # RUN dotnet publish "Managing.Api.csproj" -c Release -o /app/publish