build: Install git system dependency in Dockerfile.

This commit is contained in:
syntaxbullet
2025-12-15 22:32:27 +01:00
parent 3acb5304f5
commit d2edde77e6

View File

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