eqemu-server/utils/scripts/build/releaser.Dockerfile
2023-01-20 13:28:54 -06:00

25 lines
627 B
Docker

#############################################
# debian
#############################################
FROM debian:11-slim
#############################################
# basics
#############################################
RUN apt-get update && apt-get install -y \
rclone \
git \
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