update
This commit is contained in:
4
definition-managing-api
Normal file
4
definition-managing-api
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"schemaVersion": 2,
|
||||||
|
"dockerfilePath": "./src/Managing.Api/Dockerfile"
|
||||||
|
}
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
# 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 /src
|
|
||||||
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.Databases/Managing.Infrastructure.Databases.csproj", "Managing.Infrastructure.Databases/"]
|
|
||||||
|
|
||||||
# Restore dependencies for all projects
|
|
||||||
RUN dotnet restore "Managing.Api/Managing.Api.csproj"
|
|
||||||
|
|
||||||
# Copy everything else and build
|
|
||||||
COPY . .
|
|
||||||
WORKDIR "/src/Managing.Api"
|
|
||||||
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"]
|
|
||||||
@@ -7,22 +7,22 @@ EXPOSE 443
|
|||||||
# Use the official Microsoft .NET SDK image to build the code.
|
# Use the official Microsoft .NET SDK image to build the code.
|
||||||
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
|
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY ["/Managing.Api/Managing.Api.csproj", "Managing.Api/"]
|
COPY ["Managing.Api/Managing.Api.csproj", "Managing.Api/"]
|
||||||
COPY ["/Managing.Bootstrap/Managing.Bootstrap.csproj", "Managing.Bootstrap/"]
|
COPY ["Managing.Bootstrap/Managing.Bootstrap.csproj", "Managing.Bootstrap/"]
|
||||||
COPY ["/Managing.Infrastructure.Storage/Managing.Infrastructure.Storage.csproj", "Managing.Infrastructure.Storage/"]
|
COPY ["Managing.Infrastructure.Storage/Managing.Infrastructure.Storage.csproj", "Managing.Infrastructure.Storage/"]
|
||||||
COPY ["/Managing.Application/Managing.Application.csproj", "Managing.Application/"]
|
COPY ["Managing.Application/Managing.Application.csproj", "Managing.Application/"]
|
||||||
COPY ["/Managing.Infrastructure.MongoDb/Managing.Infrastructure.MongoDb.csproj", "Managing.Infrastructure.MongoDb/"]
|
COPY ["Managing.Infrastructure.MongoDb/Managing.Infrastructure.MongoDb.csproj", "Managing.Infrastructure.MongoDb/"]
|
||||||
COPY ["/Managing.Common/Managing.Common.csproj", "Managing.Common/"]
|
COPY ["Managing.Common/Managing.Common.csproj", "Managing.Common/"]
|
||||||
COPY ["/Managing.Core/Managing.Core.csproj", "Managing.Core/"]
|
COPY ["Managing.Core/Managing.Core.csproj", "Managing.Core/"]
|
||||||
COPY ["/Managing.Application.Abstractions/Managing.Application.Abstractions.csproj", "Managing.Application.Abstractions/"]
|
COPY ["Managing.Application.Abstractions/Managing.Application.Abstractions.csproj", "Managing.Application.Abstractions/"]
|
||||||
COPY ["/Managing.Domain/Managing.Domain.csproj", "Managing.Domain/"]
|
COPY ["Managing.Domain/Managing.Domain.csproj", "Managing.Domain/"]
|
||||||
COPY ["/Managing.Application.Workers/Managing.Application.Workers.csproj", "Managing.Application.Workers/"]
|
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.Messengers/Managing.Infrastructure.Messengers.csproj", "Managing.Infrastructure.Messengers/"]
|
||||||
COPY ["/Managing.Infrastructure.Exchanges/Managing.Infrastructure.Exchanges.csproj", "Managing.Infrastructure.Exchanges/"]
|
COPY ["Managing.Infrastructure.Exchanges/Managing.Infrastructure.Exchanges.csproj", "Managing.Infrastructure.Exchanges/"]
|
||||||
COPY ["/Managing.Infrastructure.Databases/Managing.Infrastructure.Databases.csproj", "Managing.Infrastructure.Databases/"]
|
COPY ["Managing.Infrastructure.Databases/Managing.Infrastructure.Databases.csproj", "Managing.Infrastructure.Databases/"]
|
||||||
|
|
||||||
# Restore dependencies for all projects
|
# Restore dependencies for all projects
|
||||||
RUN dotnet restore "./Managing.Api/Managing.Api.csproj"
|
RUN dotnet restore "Managing.Api/Managing.Api.csproj"
|
||||||
|
|
||||||
# Copy everything else and build
|
# Copy everything else and build
|
||||||
# COPY . .
|
# COPY . .
|
||||||
@@ -35,6 +35,6 @@ RUN dotnet restore "./Managing.Api/Managing.Api.csproj"
|
|||||||
# FROM base AS final
|
# FROM base AS final
|
||||||
# WORKDIR /app
|
# WORKDIR /app
|
||||||
# COPY --from=publish /app/publish .
|
# COPY --from=publish /app/publish .
|
||||||
#COPY Managing.Api/managing_cert.pfx .
|
# #COPY Managing.Api/managing_cert.pfx .
|
||||||
# Managing.Api/appsettings.Lowpro.json .
|
# # Managing.Api/appsettings.Lowpro.json .
|
||||||
# ENTRYPOINT ["dotnet", "Managing.Api.dll"]
|
# ENTRYPOINT ["dotnet", "Managing.Api.dll"]
|
||||||
|
|||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"schemaVersion": 2,
|
|
||||||
"dockerfilePath": "./Managing.Api/Dockerfile"
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user