rename to projecting

This commit is contained in:
2026-06-16 18:04:55 +02:00
parent da7b320032
commit bcde4178df
14778 changed files with 3658 additions and 3642 deletions

22
ProjecThing/Dockerfile Normal file
View File

@@ -0,0 +1,22 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /src
COPY ["ProjecThing/ProjecThing.csproj", "ProjecThing/"]
RUN dotnet restore "ProjecThing/ProjecThing.csproj"
COPY . .
WORKDIR "/src/ProjecThing"
RUN dotnet build "ProjecThing.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "ProjecThing.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "ProjecThing.dll"]