Skip to content

Commit

Permalink
update Valheim image
Browse files Browse the repository at this point in the history
  • Loading branch information
gOOvER committed Oct 26, 2023
1 parent af8c792 commit d1b3e01
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 40 deletions.
81 changes: 42 additions & 39 deletions games/valheim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,60 +1,63 @@
FROM --platform=$TARGETOS/$TARGETARCH ubuntu:22.04
FROM --platform=$TARGETOS/$TARGETARCH ubuntu:22.04

LABEL author="Daniel Barton" maintainer="danny6167@gmail.com"

ENV DEBIAN_FRONTEND noninteractive

#RUN timedatectl set-timezone Etc/UTC
RUN dpkg --add-architecture i386

RUN dpkg --add-architecture i386 \
&& apt update \
RUN apt update \
&& apt upgrade -y

RUN apt install -y \
gcc \
curl \
libcurl4-gnutls-dev:i386 \
libssl3:i386 libcurl4:i386 \
lib32tinfo6 \
libtinfo6:i386 \
lib32z1 \
lib32stdc++6 \
libncurses5:i386 \
libcurl3-gnutls:i386 \
libsdl2-2.0-0:i386 \
gcc \
g++ \
libgcc1 \
libc++-dev \
gdb \
gettext \
libc6 \
curl \
tar \
iproute2 \
locales \
net-tools \
tar \
tini \
tzdata \
lib32stdc++6 \
lib32tinfo6 \
lib32z1 \
libatomic1 \
libc++-dev \
libc6 \
libsdl1.2debian \
libsdl2-2.0-0 \
libfontconfig \
locales \
libcurl3-gnutls \
libcurl3-gnutls:i386 \
libcurl4-gnutls-dev:i386 \
libcurl4:i386 \
libgcc1 \
libncurses5:i386 \
libfontconfig \
libnss-wrapper \
libpulse-dev \
libpulse0 \
libsdl1.2debian \
libsdl2-2.0-0 \
libsdl2-2.0-0:i386 \
libssl3:i386 \
libtinfo6:i386
libnss-wrapper \
gettext \
tzdata \
lsb-release

## Prepare NSS Wrapper for the entrypoint as a workaround for Valheim requiring a valid UID
ENV NSS_WRAPPER_PASSWD=/tmp/passwd NSS_WRAPPER_GROUP=/tmp/group
RUN touch ${NSS_WRAPPER_PASSWD} ${NSS_WRAPPER_GROUP} \
&& chgrp 0 ${NSS_WRAPPER_PASSWD} ${NSS_WRAPPER_GROUP} \
&& chmod g+rw ${NSS_WRAPPER_PASSWD} ${NSS_WRAPPER_GROUP}
ADD passwd.template /passwd.template
## configure locale
RUN update-locale lang=en_US.UTF-8 \
&& dpkg-reconfigure --frontend noninteractive locales

## Setup user and working directory
RUN useradd -m -d /home/container -s /bin/bash container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
RUN useradd -m -d /home/container -s /bin/bash container
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

## Prepare NSS Wrapper for the entrypoint as a workaround for Valheim requiring a valid UID
ENV NSS_WRAPPER_PASSWD=/tmp/passwd NSS_WRAPPER_GROUP=/tmp/group
RUN touch ${NSS_WRAPPER_PASSWD} ${NSS_WRAPPER_GROUP} \
&& chgrp 0 ${NSS_WRAPPER_PASSWD} ${NSS_WRAPPER_GROUP} \
&& chmod g+rw ${NSS_WRAPPER_PASSWD} ${NSS_WRAPPER_GROUP}
ADD passwd.template /passwd.template

COPY ./entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]
CMD [ "/bin/bash", "/entrypoint.sh" ]
2 changes: 1 addition & 1 deletion games/valheim/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@ MODIFIED_STARTUP=$(echo -e ${STARTUP} | sed -e 's/{{/${/g' -e 's/}}/}/g')
echo -e ":/home/container$ ${MODIFIED_STARTUP}"

# Run the Server
exec ${MODIFIED_STARTUP}
eval ${MODIFIED_STARTUP}

0 comments on commit d1b3e01

Please sign in to comment.