20 lines
674 B
Docker
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"]
|