- Updated `IMediaSourceCatalog` to support user-added media sources, allowing dynamic editing and management of sources. - Removed the `UrlListSource` class as its functionality is now integrated into the new catalog structure. - Enhanced `CollectOptions` to default `RequireProxy` to true, ensuring stricter handling of proxy requirements. - Improved error handling in `ParseError` to include a `Subject` field for better context on failures. - Adjusted dependency injection to reflect changes in media source management, removing old source registrations. - Introduced background proxy checks to ensure a more robust proxy pool management during collection processes. These changes streamline the media collection process and improve the overall user experience by providing clearer error reporting and more flexible source management.
21 lines
632 B
Docker
21 lines
632 B
Docker
# Build the service, then run it on the smaller ASP.NET runtime image.
|
|
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
|
|
WORKDIR /src
|
|
|
|
COPY Directory.Build.props ./
|
|
COPY AvParser.ImgTestService.csproj ./
|
|
RUN dotnet restore AvParser.ImgTestService.csproj
|
|
|
|
COPY . ./
|
|
RUN dotnet publish AvParser.ImgTestService.csproj -c Release -o /app --no-restore
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime
|
|
WORKDIR /app
|
|
COPY --from=build /app ./
|
|
|
|
# Listen on 8080 inside the container; a reverse proxy terminates TLS for the public domain.
|
|
ENV ASPNETCORE_URLS=http://+:8080
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT ["dotnet", "AvParser.ImgTestService.dll"]
|