docker-images/Dockerfile
Michael (Parker) Parker a4710dedf1 adding binutils for addr2line
This is required for factorio crash reports apparently
2018-10-06 10:22:42 -04:00

20 lines
725 B
Docker

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