-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile.McpServer.SSE
More file actions
executable file
·22 lines (19 loc) · 836 Bytes
/
Dockerfile.McpServer.SSE
File metadata and controls
executable file
·22 lines (19 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
USER $APP_UID
WORKDIR /app
EXPOSE 5225
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY ["ExportPaperless.McpServer.SSE/ExportPaperless.McpServer.SSE.csproj", "ExportPaperless.McpServer.SSE/"]
RUN dotnet restore "ExportPaperless.McpServer.SSE/ExportPaperless.McpServer.SSE.csproj"
COPY . .
WORKDIR "/src/ExportPaperless.McpServer.SSE"
RUN dotnet build "./ExportPaperless.McpServer.SSE.csproj" -c $BUILD_CONFIGURATION -o /app/build
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "./ExportPaperless.McpServer.SSE.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "ExportPaperless.McpServer.SSE.dll"]