mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-10 07:58:39 -05:00
- Admin API and static files only accessible on port 5275 - Main proxy port (8080) no longer serves admin endpoints - AdminPortFilter rejects admin requests on wrong port - AdminStaticFilesMiddleware only serves static files on admin port - Port 5275 NOT exposed in Dockerfile or docker-compose by default - Access admin UI via SSH tunnel or by uncommenting port mapping
32 lines
770 B
Docker
32 lines
770 B
Docker
# Build stage
|
|
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
|
|
WORKDIR /src
|
|
|
|
COPY allstarr.sln .
|
|
COPY allstarr/allstarr.csproj allstarr/
|
|
COPY allstarr.Tests/allstarr.Tests.csproj allstarr.Tests/
|
|
|
|
RUN dotnet restore
|
|
|
|
COPY allstarr/ allstarr/
|
|
COPY allstarr.Tests/ allstarr.Tests/
|
|
|
|
RUN dotnet publish allstarr/allstarr.csproj -c Release -o /app/publish
|
|
|
|
# Runtime stage
|
|
FROM mcr.microsoft.com/dotnet/aspnet:10.0
|
|
WORKDIR /app
|
|
|
|
# Install curl for health checks
|
|
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p /app/downloads
|
|
|
|
COPY --from=build /app/publish .
|
|
|
|
# Only expose the main proxy port (8080)
|
|
# Admin UI runs on 5275 but is NOT exposed - access via docker exec or SSH tunnel
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT ["dotnet", "allstarr.dll"]
|