fix: use npm install for bun

This commit is contained in:
Derrick Hammer 2023-12-28 01:08:05 -05:00
parent e41d3725c8
commit 88516c1058
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -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