
Porting over nodejs images to yolks which use eval startup to properly manage the discord.js egg startup parameters
15 lines
506 B
Docker
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"]
|