build: update dockerfile
Some checks failed
Winsomnia GitOps Pipeline / build-and-push (push) Failing after 21s
Winsomnia GitOps Pipeline / deploy (push) Has been skipped

This commit is contained in:
2025-12-10 00:31:54 +03:00
parent 79961edda8
commit 3ea1f2b603
2 changed files with 20 additions and 10 deletions

View File

@@ -1,25 +1,27 @@
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
LABEL company="Winsomnia"
LABEL maintainer.name="Wesser" maintainer.email="support@winsomnia.net"
WORKDIR /app
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl --fail http://localhost:8080/health || exit 1
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src
COPY . .
ARG NUGET_USERNAME
ARG NUGET_PASSWORD
ARG NUGET_ADDRESS
RUN dotnet nuget add source ${NUGET_ADDRESS} \
--name Winsomnia \
--username ${NUGET_USERNAME} \
--password ${NUGET_PASSWORD} \
--store-password-in-clear-text
RUN --mount=type=secret,id=nuget_username \
--mount=type=secret,id=nuget_token \
--mount=type=secret,id=nuget_source \
dotnet nuget add source $(cat /run/secrets/nuget_source) \
--name Winsomnia \
--username $(cat /run/secrets/nuget_username) \
--password $(cat /run/secrets/nuget_token) \
--store-password-in-clear-text
RUN dotnet restore ./Backend.sln
@@ -31,6 +33,9 @@ RUN dotnet publish Endpoint/Endpoint.csproj \
FROM base AS final
WORKDIR /app
COPY --from=build /app .
RUN find . -name "*.pdb" -type f -delete
ENTRYPOINT ["dotnet", "Mirea.Api.Endpoint.dll"]