Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Root Dockerfile — builds JD.AI.Daemon (default workload).
# For other targets see deploy/docker/Dockerfile.gateway and deploy/docker/Dockerfile.tui.

FROM mcr.microsoft.com/dotnet/sdk:10.0.301 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0.302 AS build
WORKDIR /src
COPY . .
RUN dotnet restore src/JD.AI.Daemon/JD.AI.Daemon.csproj
Expand All @@ -12,7 +12,7 @@ RUN dotnet publish src/JD.AI.Daemon/JD.AI.Daemon.csproj \
--no-restore \
/p:UseAppHost=false

FROM mcr.microsoft.com/dotnet/aspnet:10.0.9 AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:10.0.10 AS runtime
WORKDIR /app
COPY --from=build /app/publish .
EXPOSE 15790
Expand Down
Loading