chore: test removing nodejs install in dockerfile

This commit is contained in:
John Yeo
2025-11-21 23:09:29 +00:00
parent 0dea55c2dd
commit 0abf2ef632

View File

@@ -1,8 +1,8 @@
FROM oven/bun:1.3.2
WORKDIR /app
# Install Node.js to fix Bun bug with msgpackr-extract postinstall scripts
RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
# # Install Node.js to fix Bun bug with msgpackr-extract postinstall scripts
# RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
# Copy root package files
COPY package.json .