This commit is contained in:
Akkadius
2022-12-25 03:04:19 -06:00
parent 4bbad8678c
commit 2db28a7e42
4 changed files with 60 additions and 1 deletions
+15
View File
@@ -1,8 +1,23 @@
#############################################
# debian
#############################################
FROM debian:11-slim
#############################################
# basics
#############################################
RUN apt-get update && apt-get install -y \
rclone \
make \
jq \
wget \
curl
#############################################
# node
#############################################
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash && \
apt-get update && apt-get install -y nodejs && rm -rf /var/lib/apt/lists/*
RUN npm install -g gh-release