Skip to content

Commit

Permalink
feat: upgrade system on build time
Browse files Browse the repository at this point in the history
  • Loading branch information
Rouven Himmelstein committed Jan 23, 2024
1 parent 06d665d commit f4cc88e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ RUN apt update && \
wget -qO- 'https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz' | tar zxf - -C $USER_HOME/steamcmd && \
chown -R ubuntu:ubuntu $USER_HOME/steamcmd

# Install wine and its dependencies
# Install wine and its dependencies and do a full system upgrade to get the latest and greatest packages
RUN dpkg --add-architecture i386 && \
apt update && \
apt install -y --no-install-recommends wine wine32 wine64 winbind xvfb
apt install -y --no-install-recommends wine wine32 wine64 winbind xvfb && \
apt upgrade -y && apt dist-upgrade -y

# Cleanup, remove wget
RUN apt remove -y wget && \
Expand Down

0 comments on commit f4cc88e

Please sign in to comment.