docker-images/Dockerfile
Michael (Parker) Parker 14a1a7377b adding correct package
uses busybox-extras to get telnet.
2018-07-06 17:25:30 -04:00

20 lines
682 B
Docker

# ----------------------------------
# Pterodactyl Core Dockerfile
# Environment: glibc
# Minimum Panel Version: 0.6.0
# ----------------------------------
FROM frolvlad/alpine-glibc
MAINTAINER Pterodactyl Software, <support@pterodactyl.io>
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"]