From 1de7365a34d5bb670947486e0fa4c29b19cc95e7 Mon Sep 17 00:00:00 2001 From: Rafael Matias Date: Tue, 5 Mar 2024 14:30:24 +0100 Subject: [PATCH] fix http server Signed-off-by: Rafael Matias --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index dda0cf9..181b034 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -115,5 +115,5 @@ esac # Start webserver if [ "$SERVER_ENABLED" = true ] ; then - cd /data && exec python3 -m SimpleHTTPServer "$SERVER_PORT" + cd /data && exec python3 -m http.server "$SERVER_PORT" fi