diff --git a/Dockerfile b/Dockerfile index ac59676..bc1dcc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,15 +5,15 @@ # ---------------------------------- FROM frolvlad/alpine-glibc -MAINTAINER Pterodactyl Software, +LABEL author="Pterodactyl Software" maintainer="support@pterodactyl.io" -RUN apk add --update --no-cache curl ca-certificates openssl libstdc++ \ - && apk add libc++ --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing \ +RUN apk add --update --no-cache curl ca-certificates openssl libstdc++ busybox-extras binutils \ + && 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"] +COPY ./entrypoint.sh /entrypoint.sh +CMD ["/bin/ash", "/entrypoint.sh"]