Skip to content

Commit

Permalink
Merge pull request #8 from jkuettner/gameserver-to-bookworm
Browse files Browse the repository at this point in the history
"update" parent images to debian bookworm
  • Loading branch information
jkuettner authored Oct 11, 2024
2 parents 411e14f + 0b7849a commit 6041a96
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion game-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
FROM ubuntu:bionic
FROM debian:bookworm

ENV DEBIAN_FRONTEND=NONINTERACTIVE

RUN dpkg --add-architecture i386 \
&& sed -i 's/^Components: main$/& contrib non-free non-free-firmware/' /etc/apt/sources.list.d/debian.sources \
&& apt-get update && apt-get install --no-install-recommends -y \
xvfb \
wine32 \
Expand All @@ -9,6 +12,9 @@ RUN dpkg --add-architecture i386 \
ca-certificates \
unrar \
winbind \
xauth \
cabextract \
wget \
&& apt-get clean \
&& useradd -m bfbc2

Expand Down
5 changes: 3 additions & 2 deletions master-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM ubuntu:22.04 as makefile
FROM debian:bookworm as makefile

ENV LIB_BOOST_DIR="/usr/include/boost/"
ENV LIB_OPENSSL_DIR="/usr/include/openssl/"
ENV LIB_PATH="/usr/lib"

WORKDIR /bfbc2
RUN apt-get update && apt-get install -y \
RUN sed -i 's/^Components: main$/& contrib non-free non-free-firmware/' /etc/apt/sources.list.d/debian.sources \
&& apt-get update && apt-get install -y \
unrar \
cbp2make \
wget \
Expand Down

0 comments on commit 6041a96

Please sign in to comment.