From 3466c41e91bd8a25f264eda1423f333e95c5b219 Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 13 Jul 2018 16:12:49 -0400 Subject: [PATCH 1/2] Fix Maintainer Deprecation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1513b83..d3b0505 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ # ---------------------------------- FROM frolvlad/alpine-mono -MAINTAINER Pterodactyl Software, +LABEL author="Pterodactyl Software" maintainer="support@pterodactyl.io" RUN apk add --update --no-cache openssl curl sqlite \ && adduser -D -h /home/container container From 74e8e6a4c8ee895c3c8e75fcd0217a9df6bf7cac Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Wed, 22 Aug 2018 18:14:45 -0400 Subject: [PATCH 2/2] opensim support Adding libgdiplus for opensim support. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d3b0505..2eb2833 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ FROM frolvlad/alpine-mono LABEL author="Pterodactyl Software" maintainer="support@pterodactyl.io" -RUN apk add --update --no-cache openssl curl sqlite \ +RUN echo "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \ + && apk add --update --no-cache openssl curl sqlite libgdiplus \ && adduser -D -h /home/container container USER container