From 522c0cfeafa0b340e01261e033290d10772218c3 Mon Sep 17 00:00:00 2001 From: fithwum <34775371+fithwum@users.noreply.github.com> Date: Mon, 7 Dec 2020 09:28:52 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1480b59..2d6c668 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM fithwum/debian-base:stretch +FROM alpine:latest MAINTAINER fithwum ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/foundryvtt/master/files/Install_Script.sh @@ -6,11 +6,11 @@ ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/foundryvtt/master/f ENV PUID=99 ENV GUID=100 -# RUN addgroup -S 100 \ -# && adduser -S -u 99 -D foundry -G 100 +RUN addgroup -S 100 \ + && adduser -S -u 99 -D foundry -G 100 # Install dependencies and folder creation -RUN apt-get -y update && apt-get -y ca-certificates libstdc++ su-exec bash-completion tar nodejs npm \ +RUN apk update && apk add --no-cache ca-certificates libstdc++ su-exec bash-completion tar nodejs npm \ && mkdir -p /foundry /ftemp \ && chmod 777 -R /foundry \ && chown 99:100 -R /foundry