chore: remove reduntant node 15 non-LTS release

closes #31
This commit is contained in:
softwarenoob
2021-12-14 14:58:39 +02:00
parent dd005a0661
commit 6bde9c7d3e
3 changed files with 103 additions and 93 deletions

View File

@@ -1,15 +0,0 @@
FROM --platform=$TARGETOS/$TARGETARCH node:15-bullseye-slim
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
RUN apt update \
&& apt -y install ffmpeg iproute2 git sqlite3 libsqlite3-dev python3 python3-dev ca-certificates dnsutils tzdata zip tar curl build-essential libtool \
&& npm -g install npm@latest \
&& useradd -m -d /home/container container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./../entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]