From 9a7610cd3d1702f6319d9e790a3dabc07278b053 Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Sun, 7 Oct 2018 09:12:09 -0400 Subject: [PATCH] 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. --- Dockerfile | 2 +- entrypoint.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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}'`