Update files

This commit is contained in:
Astra 2025-03-19 14:55:55 +00:00
parent 38b2938f79
commit 4cfa6d653b
4 changed files with 48 additions and 50 deletions

View file

@ -6,7 +6,7 @@
FROM cm2network/steamcmd:root-bookworm as build_stage
LABEL maintainer="joedwards32@gmail.com"
LABEL maintainer="astra@zio.sh"
ENV STEAMAPPID 730
ENV STEAMAPP cs2
@ -20,8 +20,10 @@ COPY etc/post.sh "/etc/post.sh"
RUN set -x \
# Install, update & upgrade packages
&& dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends --no-install-suggests \
libcurl4:i386 \
wget \
ca-certificates \
lib32z1 \
@ -29,10 +31,12 @@ RUN set -x \
libicu-dev \
unzip \
jq \
patch \
&& mkdir -p "${STEAMAPPDIR}" \
# Add entry script
&& chmod +x "${HOMEDIR}/entry.sh" \
&& chown -R "${USER}:${USER}" "${HOMEDIR}/entry.sh" "${STEAMAPPDIR}" \
&& chmod +x /etc/post.sh /etc/pre.sh \
# Clean up
&& apt-get clean \
&& find /var/lib/apt/lists/ -type f -delete