0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-12 13:50:44 -05:00
build/Dockerfile.node

17 lines
578 B
Docker
Raw Normal View History

# Use the Node v22.12.0, Debian 12 base image
FROM node:22.12.0-bookworm
2024-03-04 21:46:32 -05:00
# Install necessary tools and dependencies
# - git (duh)
# - git-lfs (duh)
2024-03-06 16:10:05 -05:00
# - zstd (caching action dependancy)
2024-03-04 21:46:32 -05:00
# - tree (pretty print build directory structure)
2024-03-11 13:25:29 -04:00
# - jq (working with JSON)
2024-03-06 15:14:05 -05:00
# - p7zip-full (the goat)
# - sshpass (for automated SSH authentication)
# - lftp (for automated SFTP commands)
# - vim-common (for xxd command, for file hash process)
# - rclone (for R2 uploads)
RUN apt-get update && \
apt-get install -y git git-lfs zstd tree jq p7zip-full sshpass vim-common rclone