diff --git a/Dockerfile.steamcmd b/Dockerfile.steamcmd index 2f60db7..d3e7cf2 100644 --- a/Dockerfile.steamcmd +++ b/Dockerfile.steamcmd @@ -1,5 +1,5 @@ ARG VERSION=latest -FROM highcard/druid:${VERSION} AS base +FROM artifacts.druid.gg/druid-team/druid:${VERSION} AS base FROM gameservermanagers/steamcmd:ubuntu-24.04 RUN if id -u steam >/dev/null 2>&1; then echo "Removing steam user from base image"; userdel -r steam || true; else echo "steam user not present"; fi @@ -7,7 +7,8 @@ RUN if id -u steam >/dev/null 2>&1; then echo "Removing steam user from base ima COPY --from=base /usr/bin/druid* /usr/bin/ COPY --from=base /entrypoint.sh /entrypoint.sh -RUN apt-get update && apt-get install -y \ +RUN mkdir -p /usr/share/man/man1 && \ + DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends \ bc \ binutils \ bsdmainutils \ @@ -22,8 +23,10 @@ RUN apt-get update && apt-get install -y \ lib32stdc++6 \ moreutils \ netcat-openbsd \ + openjdk-21-jre-headless \ pigz \ python3 \ + rng-tools5 \ tmux \ unzip \ uuid-runtime \