docker-images/Dockerfile
Michael (Parker) Parker e306ff5ecb added telnet to glibc image
This is dumb... Trying out something new.
2018-07-06 17:24:15 -04:00

20 lines
674 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++ telnet \
&& 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"]