Firest commit

This commit is contained in:
MaddoScientisto 2026-03-14 17:25:44 +01:00
commit 2d55f5e6f4
70 changed files with 60789 additions and 0 deletions

19
Dockerfile Normal file
View file

@ -0,0 +1,19 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src
COPY ["src/MaddoScientisto.Web/MaddoScientisto.Web.csproj", "src/MaddoScientisto.Web/"]
RUN dotnet restore "src/MaddoScientisto.Web/MaddoScientisto.Web.csproj"
COPY . .
RUN dotnet publish "src/MaddoScientisto.Web/MaddoScientisto.Web.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM nginx:1.27-alpine AS runtime
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/publish/wwwroot /usr/share/nginx/html
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD wget -qO- http://127.0.0.1/ >/dev/null 2>&1 || exit 1
CMD ["nginx", "-g", "daemon off;"]