From 7623514e10fad8e03be43fdab08ca4521c240edf Mon Sep 17 00:00:00 2001 From: tuna2134 Date: Sun, 22 Feb 2026 04:31:07 +0000 Subject: [PATCH] Fix Dockerfile paths and ensure dependencies are installed in the correct stage --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dd0933f..f75f9f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,11 @@ RUN cmake --build out FROM ubuntu:24.04 WORKDIR /app + +RUN apt-get update && apt-get install -y \ + libssl-dev \ + libcurl4-openssl-dev + COPY --from=builder /app/out/uibi-mu . -CMD ["/out/uibi-mu"] \ No newline at end of file +CMD ["/app/uibi-mu"] \ No newline at end of file