From debb97009cd94a2fa66751e176be47d544d6f6d1 Mon Sep 17 00:00:00 2001 From: Zi Gao Date: Mon, 9 Jun 2025 22:49:50 +1000 Subject: [PATCH] added bun --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ea2aece..0a50874 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,7 @@ RUN apt-get update && apt-get install -qy --no-install-recommends \ apt-get update && \ apt-get install -qy --no-install-recommends nodejs docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin make openssh-client zstd && \ rm -rf /var/lib/apt/lists/* /var/log/*.log /usr/share/doc/* /usr/share/info/* /usr/share/linda/* /usr/share/lintian/overrides/* /usr/share/man/* /etc/cron.daily/* /etc/cron.d/* && \ - curl -fsSL https://dl.google.com/go/go1.24.4.linux-amd64.tar.gz | tar -C /usr/local -xz + curl -fsSL https://dl.google.com/go/go1.24.4.linux-amd64.tar.gz | tar -C /usr/local -xz && \ + curl -fsSL https://bun.sh/install | bash ENV PATH /usr/local/go/bin:$PATH