docker-images/Dockerfile
Michael (Parker) Parker 54613c83fe adding libc++
Many things require this and it's not in the basse image.
2018-02-08 16:08:57 -05:00

22 lines
702 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 update \
&& apk upgrade \
&& apk add --no-cache curl ca-certificates openssl \
&& apk add libc++ --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"]