Добавил поддержку CI
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 28s
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 28s
This commit is contained in:
@ -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"]
|
||||
|
Reference in New Issue
Block a user