From 1bc402899287efe2540134b9f2cddc812c872cbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vi=CC=81ctor=20Falco=CC=81n?= Date: Mon, 24 Nov 2025 16:50:49 +0100 Subject: [PATCH] Add Bun installation and PATH update to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 293d5d2c..513dfc7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ # Install Bun RUN curl -fsSL https://bun.com/install | bash +ENV PATH="/root/.bun/bin:${PATH}" # Install memcached and redis servers RUN apt-get update && apt-get install -y memcached redis-server && rm -rf /var/lib/apt/lists/*