Files
yolks/nodejs/16/Dockerfile
Softwarenoob d8126cc628 feat: add nodejs images with eval startup to work with Discord eggs
Porting over nodejs images to yolks which use eval startup to properly manage the discord.js egg startup parameters
2021-08-06 21:48:59 +03:00

15 lines
506 B
Docker

FROM node:16-buster-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 \
&& 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"]