Update bastion

This commit is contained in:
Quinten
2023-11-01 20:15:32 +01:00
committed by GitHub
parent 3dc42ebf9f
commit c523dc5258

View File

@@ -4,8 +4,10 @@ LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
## install nodejs 18
RUN apt update && apt install --no-install-recommends -y curl \
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt install -y nodejs \
&& mkdir -p /etc/apt/keyrings \
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
&& apt update && apt install -y nodejs \
&& npm install -g npm@latest \
## install bastion reqs
&& apt install -y python3 build-essential git libtool netcat ffmpeg iproute2 tzdata tini \