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: 3 additions & 1 deletion Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ RUN dotnet publish Source/Prompter.csproj --configuration ${CONFIGURATION} -p:Ve
####################################
# Bot mode hosts Kestrel (health probe + re-index webhook), so the runtime needs the ASP.NET Core
# shared framework. EXPOSE 8080 is Kestrel's default container port for the /healthz and /reindex routes.
FROM mcr.microsoft.com/dotnet/aspnet:10.0-bookworm-slim
# 10.0-noble is the tag Studio's services run on; the bookworm-slim variant this used to name does not
# exist for .NET 10 (Debian slim images stop at 9.0), which is why the first publish failed to pull.
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble

WORKDIR /app
COPY --from=build /app/publish .
Expand Down
Loading