Use new mono package

This commit is contained in:
Dane Everitt 2018-01-06 15:03:39 -06:00
parent 66d40fe455
commit d9789403f8
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 3 additions and 8 deletions

View File

@ -3,15 +3,12 @@
# Environment: Mono
# Minimum Panel Version: 0.6.0
# ----------------------------------
FROM alpine:edge
FROM frolvlad/alpine-mono
MAINTAINER Pterodactyl Software, <support@pterodactyl.io>
RUN apk update \
&& apk upgrade \
&& echo "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk update \
&& apk add --no-cache mono openssl curl \
&& apk add --no-cache openssl curl \
&& adduser -D -h /home/container container
USER container

View File

@ -1,6 +1,4 @@
#!/bin/ash
sleep 2
cd /home/container
# Make internal Docker IP address available to processes.
@ -11,4 +9,4 @@ MODIFIED_STARTUP=`eval echo $(echo ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g'
echo ":/home/container$ ${MODIFIED_STARTUP}"
# Run the Server
${MODIFIED_STARTUP}
eval ${MODIFIED_STARTUP}