docker-images/Dockerfile
Michael (Parker) Parker 9a7610cd3d updated python
Moved to latest python as a base and changed the entrypoint to show the python version instead of the 
 non-existent java version.
2018-10-07 09:12:09 -04:00

21 lines
556 B
Docker

# ----------------------------------
# Pterodactyl Core Dockerfile
# Environment: Java (glibc support)
# Minimum Panel Version: 0.6.0
# ----------------------------------
FROM python:3-alpine
LABEL author="Michael Parker" maintainer="docker@parkervcp.com"
RUN apk add --no-cache --update \
&& 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"]