diff --git a/Dockerfile b/Dockerfile index c5897a0..1ebc8c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # Environment: Java (glibc support) # Minimum Panel Version: 0.6.0 # ---------------------------------- -FROM python:3.6-alpine3.7 +FROM python:3-alpine LABEL author="Michael Parker" maintainer="docker@parkervcp.com" diff --git a/entrypoint.sh b/entrypoint.sh index 00cab62..9d0d000 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,8 +1,8 @@ #!/bin/ash cd /home/container -# Output Current Java Version -java -version +# show python version +python --version # Make internal Docker IP address available to processes. export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`