Добавил поддержку CI
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 28s

This commit is contained in:
2023-07-30 01:51:17 +03:00
parent ad6e10250b
commit 247f0fcd56
3 changed files with 51 additions and 4 deletions

View File

@ -1,20 +1,22 @@
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["PaydayFrontend/PaydayFrontend.csproj", "PaydayFrontend/"]
RUN dotnet restore "PaydayFrontend/PaydayFrontend.csproj"
COPY ["PaydayFrontend.csproj", "PaydayFrontend.csproj"]
RUN dotnet restore "PaydayFrontend.csproj"
COPY . .
WORKDIR "/src/PaydayFrontend"
WORKDIR "/src"
RUN dotnet build "PaydayFrontend.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "PaydayFrontend.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM base AS final
RUN apt-get update && apt-get install -y curl
WORKDIR /app
#HEALTHCHECK --interval=5s --timeout=10s --retries=3 CMD curl --fail http://localhost:80/health || exit 1
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "PaydayFrontend.dll"]

View File

@ -12,6 +12,10 @@
<None Update="app.db" CopyToOutputDirectory="PreserveNewest" ExcludeFromSingleFile="true" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<NoWarn>1701;1702;IL2121,1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.9" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.9" />