-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first try to update dayz to depotdownloader
- Loading branch information
Showing
7 changed files
with
143 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
FROM --platform=$BUILDPLATFORM debian:bookworm-slim | ||
|
||
LABEL author="Torsten Widmann" maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source="https://github.com/gOOvER/own-pterodactyl-images" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
LABEL org.opencontainers.image.description Dockerimage for Pelican Hosting Panel and PterodactylLABEL org.opencontainers.image.description Dockerimage for Pelican Hosting Panel and Pterodactyl | ||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
COPY sources.list /etc/apt/sources.list | ||
RUN dpkg --add-architecture i386 | ||
RUN apt update | ||
RUN apt -y upgrade | ||
RUN apt install -y --no-install-recommends \ | ||
ca-certificates \ | ||
curl \ | ||
dbus \ | ||
dirmngr \ | ||
g++ \ | ||
gcc \ | ||
gdb \ | ||
gettext \ | ||
git \ | ||
gnupg \ | ||
iproute2 \ | ||
iproute2 \ | ||
jq \ | ||
locales \ | ||
mesa-utils \ | ||
net-tools \ | ||
netcat-openbsd \ | ||
numactl \ | ||
psmisc \ | ||
python3 \ | ||
python3-dev \ | ||
python3-pip \ | ||
sed \ | ||
speex:i386 \ | ||
tar \ | ||
telnet \ | ||
tini \ | ||
tzdata \ | ||
wget \ | ||
unzip \ | ||
lib32gcc-s1 \ | ||
lib32stdc++6 \ | ||
lib32tinfo6 \ | ||
lib32z1 \ | ||
libasound2 \ | ||
libatk1.0-0 \ | ||
libatomic1 \ | ||
libc++-dev \ | ||
libc++1 \ | ||
libc6 \ | ||
libc6:i386 \ | ||
libcurl3-gnutls \ | ||
libcurl3-gnutls:i386 \ | ||
libcurl4 \ | ||
libcurl4-gnutls-dev:i386 \ | ||
libcurl4:i386 \ | ||
libfontconfig \ | ||
libgcc1 \ | ||
libgconf-2-4 \ | ||
libgdiplus \ | ||
libgtk2.0-0:i386 \ | ||
libnss3 \ | ||
libnss-wrapper \ | ||
libpangocairo-1.0-0 \ | ||
libpulse-dev \ | ||
libpulse0 \ | ||
libsdl1.2debian \ | ||
libsdl1.2debian:i386 \ | ||
libsdl2-2.0-0 \ | ||
libsdl2-2.0-0:i386 \ | ||
libssl3 \ | ||
libssl3:i386 \ | ||
libstdc++6 \ | ||
libstdc++6:i386 \ | ||
libtcmalloc-minimal4 \ | ||
libtinfo6:i386 \ | ||
libxcomposite1 \ | ||
libxcursor1 \ | ||
libxdamage1 \ | ||
libxi6 \ | ||
libxrandr2 \ | ||
libxss1 \ | ||
libxtst6 | ||
|
||
RUN rm -rf /var/lib/apt/lists/* | ||
|
||
## install dotnet to support STEAM dotnet games | ||
RUN apt update -y \ | ||
&& apt upgrade -y \ | ||
&& wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \ | ||
&& dpkg -i packages-microsoft-prod.deb \ | ||
&& rm packages-microsoft-prod.deb \ | ||
&& apt update -y \ | ||
&& apt install -y \ | ||
aspnetcore-runtime-8.0 \ | ||
dotnet-sdk-8.0 | ||
|
||
RUN curl -sLOJ $(curl -s https://api.github.com/repos/SteamRE/DepotDownloader/releases/latest | grep browser_download_url | cut -d\" -f4 | egrep linux-x64.zip) | ||
RUN unzip DepotDownloader-linux-x64.zip -d /usr/local/bin/ | ||
RUN chmod +x /usr/local/bin/DepotDownloader | ||
|
||
## install rcon | ||
RUN cd /tmp/ \ | ||
&& curl -sSL https://github.com/gorcon/rcon-cli/releases/download/v0.10.3/rcon-0.10.3-amd64_linux.tar.gz > rcon.tar.gz \ | ||
&& tar xvf rcon.tar.gz \ | ||
&& mv rcon-0.10.3-amd64_linux/rcon /usr/local/bin/ | ||
|
||
# Set the locale | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US:en | ||
ENV LC_ALL en_US.UTF-8 | ||
|
||
## 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 | ||
|
||
## 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 | ||
|
||
# Sets the default stop signal as wings can (currently) only send a kill or generic stop | ||
STOPSIGNAL SIGINT | ||
|
||
COPY --chown=container:container ../entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
ENTRYPOINT ["/usr/bin/tini", "-g", "--"] | ||
CMD ["/entrypoint.sh"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.