Updated documentation to reflect current status, fixed broken Dockerfile and Docker configuration, updated to python3.13
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
||||
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
|
||||
WORKDIR /build
|
||||
COPY . .
|
||||
RUN dotnet restore ./Server.csproj
|
||||
RUN dotnet publish ./Server.csproj -c Release -o /output
|
||||
RUN dotnet restore Server/Server.csproj
|
||||
RUN dotnet publish Server/Server.csproj -c Release -o /output
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS final
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS final
|
||||
WORKDIR /app
|
||||
COPY --from=build /output .
|
||||
ENV ASPNETCORE_ENVIRONMENT Docker
|
||||
|
||||
Reference in New Issue
Block a user