mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-12 16:50:45 -05:00
9 lines
246 B
Docker
9 lines
246 B
Docker
# Use the Node v20.10.0 base image
|
|
FROM node:20.10.0
|
|
|
|
# Install necessary tools and dependencies (git, git-lfs, and zstd)
|
|
RUN apt-get update && \
|
|
apt-get install -y git git-lfs zstd && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|