We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be2fb7 commit 0672ca2Copy full SHA for 0672ca2
Containerfile
@@ -1,6 +1,6 @@
1
-FROM ubuntu:20.04 as production
+FROM ubuntu:24.04 as production
2
3
-ENV DEBIAN_FRONTEND noninteractive
+ENV DEBIAN_FRONTEND=noninteractive
4
5
RUN dpkg --add-architecture i386 \
6
&& apt-get update -q \
@@ -10,11 +10,11 @@ RUN dpkg --add-architecture i386 \
10
curl \
11
g++-multilib \
12
iproute2 \
13
- lib32stdc++-7-dev \
+ lib32stdc++-13-dev \
14
lib32z1-dev \
15
libc6-dev-i386 \
16
linux-libc-dev:i386 \
17
- libncurses5:i386 \
+ libncurses6:i386 \
18
tzdata \
19
&& update-ca-certificates \
20
&& apt-get clean \
@@ -31,7 +31,7 @@ RUN chown container:container -R /steamcmd
31
32
USER container
33
34
-ENV HOME /home/container
+ENV HOME=/home/container
35
36
WORKDIR /home/container
37
0 commit comments