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