From 1579463845b2c14120d0cf895e3dd8a49da519ef Mon Sep 17 00:00:00 2001 From: "Michael (Parker) Parker" Date: Sun, 14 Oct 2018 19:24:00 -0400 Subject: [PATCH] adding libc6-compat This is required to run some servers. --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 435b99f..fe9c7c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,11 +3,12 @@ # Environment: glibc # Minimum Panel Version: 0.6.0 # ---------------------------------- -FROM node:8.9-alpine +FROM node:8-alpine -MAINTAINER Pterodactyl Software, +LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -RUN adduser -D -h /home/container container +RUN apk add --no-cache --update libc6-compat \ + && adduser -D -h /home/container container USER container ENV USER=container HOME=/home/container