# ---------------------------------- # Pterodactyl Core Dockerfile # Environment: glibc # Minimum Panel Version: 0.6.0 # ---------------------------------- FROM frolvlad/alpine-glibc MAINTAINER Pterodactyl Software, RUN apk add --update --no-cache curl ca-certificates openssl libstdc++ busybox-extras \ && apk add libc++ jq --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \ && adduser -D -h /home/container container USER container ENV USER=container HOME=/home/container WORKDIR /home/container COPY ./entrypoint.sh /entrypoint.sh CMD ["/bin/ash", "/entrypoint.sh"]