From 2e8893b240f9c135b88661d7685d1b4be7a36b2c Mon Sep 17 00:00:00 2001 From: Derek Holloway Date: Thu, 19 Jun 2025 16:58:19 -0700 Subject: [PATCH] add python to build container --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 570fa26..86263da 100755 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ COPY ["src", "."] RUN dotnet workload install wasm-tools +RUN apt update +RUN apt install -y python + # Restore the Server RUN dotnet restore 'MistoxWebsite.Server/MistoxWebsite.Server.csproj'