
Migrates Python images from images fork with eval startup that correctly parses the Discord.py startup parameters
15 lines
468 B
Docker
15 lines
468 B
Docker
FROM python:2.7-slim
|
|
|
|
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
|
|
|
|
RUN apt update \
|
|
&& apt -y install git gcc g++ ca-certificates dnsutils curl iproute2 ffmpeg procps \
|
|
&& 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"]
|