0
0
mirror of https://github.com/sp-tarkov/db-website.git synced 2025-02-02 17:49:21 -05:00

Install Git & Git LFS on Docker Image

This commit is contained in:
Refringe 2024-12-07 22:04:27 -05:00
parent 3b6196d0f5
commit da379906cb
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k

View File

@ -5,7 +5,7 @@ ARG PROD
ENV PROD=$PROD
# Update and install dependencies
RUN apt-get update && apt-get install -y curl unzip && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y curl unzip git git-lfs && rm -rf /var/lib/apt/lists/*
# Install Latest Bun
RUN curl -fsSL https://bun.sh/install | bash