From 7f2dca597f0bdddd835eed420e721483e2e640ac Mon Sep 17 00:00:00 2001 From: trojvn Date: Tue, 10 Mar 2026 04:08:24 +0300 Subject: [PATCH] chore(build): update ipatool binary path in dockerfile update the path of the ipatool binary in the dockerfile to ensure it is copied to the correct location in the container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f925a1a..55d84f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ WORKDIR /app # Копируем только скомпилированный файл из предыдущего этапа COPY --from=builder /app/server . -COPY --from=builder /app/bin/ipatool . +COPY --from=builder /app/bin/ipatool /bin/ipatool # Открываем порт (тот же, что в коде Huma) EXPOSE 8888