From 92a2c6956a74ed96d3bb971518d60594645b053f Mon Sep 17 00:00:00 2001 From: chiko Date: Tue, 21 Oct 2025 01:26:18 +0200 Subject: [PATCH] forgot the ENV for bun --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f5c1d1e..44e3e8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && \ rm -rf /var/lib/apt/lists/* # install BunJs RUN curl -fsSL https://bun.com/install | bash - +ENV PATH="/root/.bun/bin:$PATH" # install dependencies into temp directory # this will cache them and speed up future builds FROM base AS install