Funktionierender Stand, der Veröffentlicht wurde

This commit is contained in:
BuildTools 2024-09-05 20:18:38 +02:00
parent 3e107950fe
commit afc63067d6
5 changed files with 23 additions and 8 deletions

View File

@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "8.0.8",
"commands": [
"dotnet-ef"
],
"rollForward": false
}
}
}

Binary file not shown.

Binary file not shown.

View File

@ -1,15 +1,20 @@
ARG DOTNET_RUNTIME=mcr.microsoft.com/dotnet/aspnet:8.0
ARG DOTNET_SDK=mcr.microsoft.com/dotnet/sdk:8.0
# Unter https://aka.ms/customizecontainer erfahren Sie, wie Sie Ihren Debugcontainer anpassen und wie Visual Studio dieses Dockerfile verwendet, um Ihre Images für ein schnelleres Debuggen zu erstellen. # Unter https://aka.ms/customizecontainer erfahren Sie, wie Sie Ihren Debugcontainer anpassen und wie Visual Studio dieses Dockerfile verwendet, um Ihre Images für ein schnelleres Debuggen zu erstellen.
# Diese Stufe wird verwendet, wenn sie von VS im Schnellmodus ausgeführt wird (Standardeinstellung für Debugkonfiguration). # Diese Stufe wird verwendet, wenn sie von VS im Schnellmodus ausgeführt wird (Standardeinstellung für Debugkonfiguration).
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base FROM ${DOTNET_RUNTIME} AS base
USER app USER app
WORKDIR /app WORKDIR /app
ENV ASPNETCORE_URLS=http://+:8080
ENV ASPNETCORE_ENVIRONMENT=Development
EXPOSE 8080 EXPOSE 8080
EXPOSE 8081 EXPOSE 8081
# Diese Stufe wird zum Erstellen des Dienstprojekts verwendet. # Diese Stufe wird zum Erstellen des Dienstprojekts verwendet.
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build FROM ${DOTNET_SDK} AS build
ARG BUILD_CONFIGURATION=Release ARG BUILD_CONFIGURATION=Release
WORKDIR /src WORKDIR /src
COPY ["FWLAZ_Web.csproj", "."] COPY ["FWLAZ_Web.csproj", "."]
@ -23,15 +28,12 @@ FROM build AS publish
ARG BUILD_CONFIGURATION=Release ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "./FWLAZ_Web.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false RUN dotnet publish "./FWLAZ_Web.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
# Set Write Permissions to database
# FROM docker.io/library/alpine:3.20
# RUN chmod 755 /Data/quiz.db
# Diese Stufe wird in der Produktion oder bei Ausführung von VS im regulären Modus verwendet (Standard, wenn die Debugkonfiguration nicht verwendet wird). # Diese Stufe wird in der Produktion oder bei Ausführung von VS im regulären Modus verwendet (Standard, wenn die Debugkonfiguration nicht verwendet wird).
FROM base AS final FROM base AS final
WORKDIR /app WORKDIR /app
COPY --from=publish /app/publish . COPY --from=publish /app/publish .
VOLUME /app/Data
USER root
ENTRYPOINT ["dotnet", "FWLAZ_Web.dll"] ENTRYPOINT ["dotnet", "FWLAZ_Web.dll"]
# Invalid # Invalid

View File

@ -9,7 +9,7 @@
"QuizDB": "Data Source=Data/quiz.db" "QuizDB": "Data Source=Data/quiz.db"
}, },
"AppSettings": { "AppSettings": {
"RegistrationEnabled": true "RegistrationEnabled": false
}, },
"AllowedHosts": "*" "AllowedHosts": "*"
} }