Moved to latest python as a base and changed the entrypoint to show the python version instead of the non-existent java version.
21 lines
556 B
Docker
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"]
|