diff --git a/Dockerfile b/Dockerfile index 81214a1..4a6e806 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,9 @@ FROM oven/bun:latest AS base WORKDIR /app +# Install system dependencies +RUN apt-get update && apt-get install -y git + # Install dependencies COPY package.json bun.lock ./ RUN bun install --frozen-lockfile