Fix musl static build: update Dockerfile target name and link libs

ober

eb2323b8cd24ad44f79b949cb3934901c48e95be

diff --git a/Dockerfile b/Dockerfile
index f44dc5a..22f7b17 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,7 +24,7 @@ COPY . /build/mine/jerboa-gitsafe
 
 # ── Build gitsafe-musl ───────────────────────────────────────────────────────
 WORKDIR /build/mine/jerboa-gitsafe
-RUN make gitsafe-musl-local
+RUN make linux-local
 
 # ── Verify ───────────────────────────────────────────────────────────────────
 RUN ./gitsafe-musl --version
diff --git a/build-gitsafe-musl.ss b/build-gitsafe-musl.ss
index 2607932..785a029 100644
--- a/build-gitsafe-musl.ss
+++ b/build-gitsafe-musl.ss
@@ -205,7 +205,7 @@
 ;; --- Step 5: Compile and link with musl-gcc ---
 (printf "[5/6] Compiling and linking with musl-gcc (static)...\n")
 
-(define link-libs "-lkernel -llz4 -lz -lm -ldl -lpthread -luuid -lncurses")
+(define link-libs "-lkernel -llz4 -lz -lm -ldl -lpthread")
 
 (let ([rc (system (format "musl-gcc -c -O2 -I~a -o gitsafe-main-musl.o gitsafe-main-musl.c"
                           musl-chez-dir))])