From 443fd9251f91e124439c0b70015b45fc3ef6f519 Mon Sep 17 00:00:00 2001 From: a10kiloham <295361+a10kiloham@users.noreply.github.com> Date: Tue, 9 Sep 2025 17:54:25 +0100 Subject: [PATCH] Fix missing Python and build tools in Dockerfile --- frontend/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index c5de22d..a3bcaae 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,7 +1,8 @@ FROM node:16-alpine VOLUME ["/raspiscan/frontend/node_modules"] - +RUN apk add --update python3 make g++\ + && rm -rf /var/cache/apk/* RUN npm config set legacy-peer-deps true WORKDIR /raspiscan/frontend