From 1254ad684fb99889c945f9e01d574ed4ec71c9a5 Mon Sep 17 00:00:00 2001 From: "Philip H." <47042125+pheiduck@users.noreply.github.com> Date: Tue, 30 Jul 2024 18:21:27 +0200 Subject: [PATCH] Dockerfile: python3 missing as dependency --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5aa1019d..72494bc6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ RUN apk add --no-cache \ dumb-init \ iptables \ iptables-legacy \ + python3 \ wireguard-tools # Use iptables-legacy @@ -42,4 +43,4 @@ ENV DEBUG=Server,WireGuard,Database # Run Web UI WORKDIR /app -CMD ["/usr/bin/dumb-init", "node", "server.js"] \ No newline at end of file +CMD ["/usr/bin/dumb-init", "node", "server.js"]