We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36ebae9 + 9dc78b9 commit 97d2c6fCopy full SHA for 97d2c6f
1 file changed
src/Viamus.Azure.Devops.Mcp.Server/Dockerfile
@@ -23,6 +23,11 @@ RUN dotnet publish "./Viamus.Azure.Devops.Mcp.Server.csproj" -c $BUILD_CONFIGURA
23
24
# Final stage
25
FROM base AS final
26
+#Install curl for health checks
27
+USER root
28
+RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
29
+USER $APP_UID
30
+
31
WORKDIR /app
32
COPY --from=publish /app/publish .
33
0 commit comments