From a9d4622a02e19710bbfaaf35a302c22b4cef07b2 Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Sat, 18 Jan 2025 16:48:05 +0900 Subject: [PATCH] fix(docker): remove static build option for improved compatibility Signed-off-by: HAHWUL --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2bd4d4c2..93d0cfbf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /noir COPY . . RUN shards install --production && \ - shards build --release --production --static --no-debug + shards build --release --no-debug --production # RUNNER FROM alpine:latest