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

12 lines
309 B
Docker
Raw Normal View History

2024-03-02 13:59:49 -05:00
# Use the Node v20.10.0 base image
FROM node:20.10.0
2024-03-02 13:59:49 -05:00
# Install necessary tools and dependencies (git, git-lfs, and zstd)
2024-03-01 11:12:38 -05:00
RUN apt-get update && \
2024-03-02 13:59:49 -05:00
apt-get install -y git git-lfs zstd && \
2024-03-01 11:12:38 -05:00
apt-get clean && \
rm -rf /var/lib/apt/lists/*
2024-03-01 12:46:12 -05:00
# Set the working directory to /code
WORKDIR /code