mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-20 01:12:36 +00:00
25 lines
627 B
Docker
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
|
|
|