Fix Bun download URL: remove non-existent LATEST file fetch
Publish Docker Image / build-base (push) Successful in 36m8s
Publish Docker Image / build-omos (push) Successful in 47m45s
Publish Docker Image / update-description (push) Successful in 14s

This commit is contained in:
2026-04-19 23:05:31 +02:00
parent 7b8c74852e
commit d9d3a4c1d2
-1
View File
@@ -174,7 +174,6 @@ RUN if [ "${INSTALL_OMOS}" = "true" ]; then \
elif [ "$ARCH" = "aarch64" ]; then \ elif [ "$ARCH" = "aarch64" ]; then \
BUN_ARCH="aarch64"; \ BUN_ARCH="aarch64"; \
fi && \ fi && \
BUN_VERSION=$(curl -fsSL https://github.com/oven-sh/bun/releases/latest/download/LATEST) && \
curl -fsSL "https://github.com/oven-sh/bun/releases/latest/download/bun-linux-${BUN_ARCH}.zip" -o /tmp/bun.zip && \ curl -fsSL "https://github.com/oven-sh/bun/releases/latest/download/bun-linux-${BUN_ARCH}.zip" -o /tmp/bun.zip && \
unzip -o /tmp/bun.zip -d /tmp/bun && \ unzip -o /tmp/bun.zip -d /tmp/bun && \
mv /tmp/bun/bun-linux-${BUN_ARCH}/bun /usr/local/bin/bun && \ mv /tmp/bun/bun-linux-${BUN_ARCH}/bun /usr/local/bin/bun && \