From 2db20d04c93acce6f53f88a222adf8c1e5f737c6 Mon Sep 17 00:00:00 2001 From: Mario Alegre Date: Thu, 4 Mar 2021 21:29:18 -0500 Subject: [PATCH] bugfix for valheim --- valheim/Containerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/valheim/Containerfile b/valheim/Containerfile index d0fdbd4..2f5623d 100644 --- a/valheim/Containerfile +++ b/valheim/Containerfile @@ -18,13 +18,16 @@ ARG FILESUID=5000 ### General Setup ### -# install packages we want +# install basic packages +RUN apt update -y && apt install -y software-properties-common libsdl2-2.0-0 zip + +# install steamcmd RUN apt-add-repository contrib && \ apt-add-repository non-free && \ apt update -y && \ # echo steam steam/question select "I AGREE" | debconf-set-selections && \ # echo steam steam/license note '' | debconf-set-selections && \ - apt install -y steamcmd libsdl2-2.0-0 + apt install -y steamcmd # create valheim server user with file owner UID RUN addgroup --gid $FILESUID vhadmin && \