From 5fc42b8f7ba492838b01ffd3233791e84d753608 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 13 Jul 2018 04:16:41 -0400 Subject: [PATCH 1/3] Fix Maintainer Deprecation --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 34575b9..4c11492 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ # ---------------------------------- FROM ubuntu:18.04 -MAINTAINER Pterodactyl Software, +LABEL vendor="Pterodactyl Software" maintainer="support@pterodactyl.io" + ENV DEBIAN_FRONTEND noninteractive # Install Dependencies RUN dpkg --add-architecture i386 \ From 15323e496f94173dc220fab0b664594c48c1605e Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 13 Jul 2018 04:19:16 -0400 Subject: [PATCH 2/3] Fix Maintainer Deprecation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c11492..9b757f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # ---------------------------------- FROM ubuntu:18.04 -LABEL vendor="Pterodactyl Software" maintainer="support@pterodactyl.io" +LABEL author="Pterodactyl Software" maintainer="support@pterodactyl.io" ENV DEBIAN_FRONTEND noninteractive # Install Dependencies From 64ddf27920e668e9653d321402d330082906a6a2 Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Sat, 18 Aug 2018 22:17:39 -0400 Subject: [PATCH 3/3] Update entrypoint.sh --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index e79cacd..f0549a8 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/bash cd /home/container - +sleep 1 # Make internal Docker IP address available to processes. export INTERNAL_IP=`ip route get 1 | awk '{print $NF;exit}'`