Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Dockerfile.steamcmd
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
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

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 \
Expand All @@ -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 \
Expand Down
Loading