jellypod/Dockerfile.build
Duncan Tourolle cdf53c5288
Some checks failed
🧪 Test Plugin / test (push) Successful in 1m10s
🏗️ Build Plugin / build (push) Failing after 20m0s
🚀 Release Plugin / build-and-release (push) Failing after 3m33s
Add docker to simplify build
2026-01-10 21:01:28 +01:00

14 lines
267 B
Docker

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