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
10 changes: 5 additions & 5 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04 as production
FROM ubuntu:24.04 as production

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

RUN dpkg --add-architecture i386 \
&& apt-get update -q \
Expand All @@ -10,11 +10,11 @@ RUN dpkg --add-architecture i386 \
curl \
g++-multilib \
iproute2 \
lib32stdc++-7-dev \
lib32stdc++-13-dev \
lib32z1-dev \
libc6-dev-i386 \
linux-libc-dev:i386 \
libncurses5:i386 \
libncurses6:i386 \
tzdata \
&& update-ca-certificates \
&& apt-get clean \
Expand All @@ -31,7 +31,7 @@ RUN chown container:container -R /steamcmd

USER container

ENV HOME /home/container
ENV HOME=/home/container

WORKDIR /home/container

Expand Down