mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-12 17:10:45 -05:00
14 lines
387 B
Docker
14 lines
387 B
Docker
# Use the Node v20.10.0 base image
|
|
FROM node:20.10.0
|
|
|
|
# Install necessary tools and dependencies
|
|
# - git (duh)
|
|
# - git-lfs (duh)
|
|
# - zstd (caching action dependancy)
|
|
# - tree (pretty print build directory structure)
|
|
# - p7zip-full (the goat)
|
|
RUN apt-get update && \
|
|
apt-get install -y git git-lfs zstd tree p7zip-full && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|