Skip to content

Commit

Permalink
Merge pull request #2 from RouHim/feature/wine-9
Browse files Browse the repository at this point in the history
feat: only install wine 64
  • Loading branch information
RouHim authored Feb 27, 2024
2 parents af01c73 + 62a7a4c commit dd0c925
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions container-data/Containerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use latest Ubuntu as base image
FROM ubuntu:noble-20240212
FROM ubuntu:devel

# Define environment variables
ENV USER_HOME "/home/ubuntu"
Expand All @@ -18,9 +18,8 @@ RUN apt update && \
chown -R ubuntu:ubuntu $USER_HOME/steamcmd

# 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 && \
RUN apt update && \
apt install -y --no-install-recommends wine wine64 winbind xvfb && \
apt upgrade -y

# Cleanup, remove wget
Expand Down

0 comments on commit dd0c925

Please sign in to comment.