Skip to content

Commit

Permalink
Fix lib32gcc-s1 error
Browse files Browse the repository at this point in the history
  • Loading branch information
RestoreMonarchy committed Jan 24, 2025
1 parent 86af30a commit 097e9ed
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm64v8/debian:bookworm-slim
FROM arm64v8/debian:bookworm
LABEL com.docker.image.architecture=arm64

ENV DEBIAN_FRONTEND=noninteractive
Expand All @@ -7,15 +7,17 @@ ENV STEAMCMDDIR "/opt/steamcmd"
ENV LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:/usr/lib/box64-x86_64-linux-gnu"

# Install dependencies
RUN apt-get update && apt-get install -y \
RUN dpkg --add-architecture armhf && \
apt-get update && apt-get install -y \
wget \
curl \
gpg \
ca-certificates \
libcurl4 \
libc6 \
libstdc++6 \
lib32gcc-s1 \
libc6:armhf \
libstdc++6:armhf \
&& rm -rf /var/lib/apt/lists/*

# Install box64
Expand All @@ -31,7 +33,6 @@ RUN useradd -m ${USER} \

WORKDIR ${STEAMCMDDIR}

# Install SteamCMD as steam user
USER ${USER}
RUN curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" | tar zxvf - \
&& mkdir -p ~/.steam/sdk64 \
Expand Down

0 comments on commit 097e9ed

Please sign in to comment.