2024-03-02 22:29:09 -05:00
|
|
|
# Use the Node v20.10.0 base image
|
|
|
|
FROM node:20.10.0
|
|
|
|
|
2024-03-04 21:46:32 -05:00
|
|
|
# Install necessary tools and dependencies
|
|
|
|
# - git (duh)
|
|
|
|
# - git-lfs (duh)
|
|
|
|
# - zstd (caching action dependancy)
|
2024-03-05 12:40:50 -05:00
|
|
|
# - p7zip-full (creating archives)
|
2024-03-04 21:46:32 -05:00
|
|
|
# - tree (pretty print build directory structure)
|
2024-03-02 22:29:09 -05:00
|
|
|
RUN apt-get update && \
|
2024-03-05 12:40:50 -05:00
|
|
|
apt-get install -y git git-lfs zstd p7zip-full tree && \
|
2024-03-02 22:29:09 -05:00
|
|
|
apt-get clean && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|