Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gOOvER committed Oct 14, 2023
1 parent 0b79b66 commit f677e7b
Showing 1 changed file with 42 additions and 43 deletions.
85 changes: 42 additions & 43 deletions games/wurm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,71 +8,70 @@ RUN dpkg --add-architecture i386
RUN apt update
RUN apt upgrade -y
RUN apt install -y \
wget \
mesa-utils \
git \
tar \
apt-transport-https \
curl \
gcc \
g++ \
iproute2 \
gcc \
gdb \
sed \
xvfb \
python3 \
python3-dev \
python3-pip \
git \
iproute2 \
jq \
telnet \
mesa-utils \
net-tools \
netcat-openbsd \
tzdata \
psmisc \
python3 \
python3-dev \
python3-pip \
sed \
sqlite3 \
libsdl1.2debian \
libfontconfig1 \
tar \
telnet \
tzdata \
wget \
xvfb \
lib32gcc-s1 \
libgcc1 \
lib32stdc++6 \
lib32tinfo6 \
lib32z1 \
lib32stdc++6 \
libstdc++6 \
libgdiplus \
libcurl4 \
libfontconfig1 \
libpangocairo-1.0-0 \
libnss3 \
libgconf-2-4 \
libxi6 \
libxcursor1 \
libxss1 \
libxcomposite1 \
libasound2 \
libxdamage1 \
libxtst6 \
libatk1.0-0 \
libxrandr2 \
libc6:i386 \
libcurl3-gnutls:i386 \
libcurl4 \
libcurl4 \
libcurl4:i386 \
libcurl4-gnutls-dev:i386 \
libpulse-dev \
#libssl3 \
#libssl3:i386 \
libtinfo6:i386 \
libcurl4:i386 \
libfontconfig1 \
libfontconfig1 \
libgcc1 \
libgconf-2-4 \
libgdiplus \
libncurses5:i386 \
libcurl3-gnutls:i386 \
libnss3 \
libpangocairo-1.0-0 \
libpulse-dev \
libsdl1.2debian \
libsdl2-2.0-0 \
libsdl2-2.0-0:i386 \
libstdc++6 \
libstdc++6:i386 \
libc6:i386 \
libswt-gtk-4-java \
libtcmalloc-minimal4 \
libswt-gtk-4-java
libtinfo6:i386 \
libxcomposite1 \
libxcursor1 \
libxdamage1 \
libxi6 \
libxrandr2 \
libxss1 \
libxtst6

RUN apt install apt-transport-https ca-certificates wget dirmngr gnupg software-properties-common -y
RUN wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add -
RUN add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/
RUN mkdir -p /etc/apt/keyrings
RUN wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | tee /etc/apt/keyrings/adoptium.asc
RUN echo "deb [signed-by=/etc/apt/keyrings/adoptium.asc] https://packages.adoptium.net/artifactory/deb $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" | tee /etc/apt/sources.list.d/adoptium.list
RUN apt update
RUN apt install adoptopenjdk-8-hotspot -y
RUN apt install temurin-8-jdk -y

## Setup user and working directory
RUN useradd -m -d /home/container -s /bin/bash container
Expand Down

0 comments on commit f677e7b

Please sign in to comment.