Skip to content

Commit 0672ca2

Browse files
authored
chore: update base image to Ubuntu 24.04 and adjust package dependencies (#8)
1 parent 3be2fb7 commit 0672ca2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Containerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM ubuntu:20.04 as production
1+
FROM ubuntu:24.04 as production
22

3-
ENV DEBIAN_FRONTEND noninteractive
3+
ENV DEBIAN_FRONTEND=noninteractive
44

55
RUN dpkg --add-architecture i386 \
66
&& apt-get update -q \
@@ -10,11 +10,11 @@ RUN dpkg --add-architecture i386 \
1010
curl \
1111
g++-multilib \
1212
iproute2 \
13-
lib32stdc++-7-dev \
13+
lib32stdc++-13-dev \
1414
lib32z1-dev \
1515
libc6-dev-i386 \
1616
linux-libc-dev:i386 \
17-
libncurses5:i386 \
17+
libncurses6:i386 \
1818
tzdata \
1919
&& update-ca-certificates \
2020
&& apt-get clean \
@@ -31,7 +31,7 @@ RUN chown container:container -R /steamcmd
3131

3232
USER container
3333

34-
ENV HOME /home/container
34+
ENV HOME=/home/container
3535

3636
WORKDIR /home/container
3737

0 commit comments

Comments
 (0)