Add git to Dockerfile for GitHub dependencies

The tinypdf-plus package is installed from GitHub and requires git
during npm install.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
fullsizemalt 2026-01-08 12:15:54 -08:00
parent 4bdbfc82ca
commit 908c82916d

View file

@ -1,7 +1,7 @@
FROM node:20-alpine AS builder
# Install OpenSSL for Prisma
RUN apk add --no-cache openssl
# Install OpenSSL and Git for Prisma and GitHub dependencies
RUN apk add --no-cache openssl git
WORKDIR /app