From ba4061e5a406c03bffe178232a0a5f7172649ceb Mon Sep 17 00:00:00 2001 From: Hadrien Patte Date: Mon, 16 Jun 2025 23:03:02 +0200 Subject: [PATCH] Make `NUSQLITE3_PATH` build arg configurable --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f9c46117..816bdd3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ WORKDIR /app # Copy compiled frontend and server from build stages COPY --from=build-client /client/dist /app/client/dist COPY --from=build-server /server /app -COPY --from=build-server /usr/local/lib/nusqlite3 /usr/local/lib/nusqlite3 +COPY --from=build-server ${NUSQLITE3_PATH} ${NUSQLITE3_PATH} EXPOSE 80