From 88516c1058d17bfbe41147d38e3dc2136e428413 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 28 Dec 2023 01:08:05 -0500 Subject: [PATCH] fix: use npm install for bun --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ac2361..0948e6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:18.17.0 # Install Bun -RUN curl -fsSL https://bun.sh/install | bash +RUN npm install -g bun # Set the working directory in the container WORKDIR /app