Add docker to simplify build
🧪 Test Plugin / test (push) Successful in 1m10s
🏗️ Build Plugin / build (push) Failing after 20m0s
🚀 Release Plugin / build-and-release (push) Failing after 2m46s

This commit is contained in:
2026-01-10 21:01:28 +01:00
parent 6be05158d0
commit cdf53c5288
3 changed files with 17 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0
# Install Python and pip for JPRM
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
jq \
&& rm -rf /var/lib/apt/lists/*
# Install JPRM
RUN pip install --break-system-packages jprm
WORKDIR /src