0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-12 16:50:45 -05:00
build/Dockerfile.node
Refringe a4d042b85d
Revert "Update build.yaml and Dockerfile.node"
This reverts commit 36f871d5a8e3c03feafa0e0a09ec5c620783b183.
2024-03-05 22:28:59 -05:00

13 lines
349 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)
RUN apt-get update && \
apt-get install -y git git-lfs zstd tree && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*