forked from webanck/docker-wine-steam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
81 lines (63 loc) · 3.47 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
FROM ubuntu
MAINTAINER Antoine Webanck <[email protected]>
# Creating the wine user and setting up dedicated non-root environment: replace 1001 by your user id (id -u) for X sharing.
RUN useradd -u 1001 -d /home/wine -m -s /bin/bash wine
ENV HOME /home/wine
WORKDIR /home/wine
# Adding the helper script and an alias to launch the steam to be installed.
COPY finalize_installation.sh /home/wine/.finalize_installation.sh
RUN chown wine:wine /home/wine/.finalize_installation.sh && \
chmod o+x /home/wine/.finalize_installation.sh && \
su -p -l wine -c "echo 'alias finalize_installation=\"bash /home/wine/.finalize_installation.sh\"' >> /home/wine/.bashrc" && \
su -p -l wine -c "echo 'alias steam=\"wine /home/wine/.wine/drive_c/Program\ Files/Steam/Steam.exe\"' >> /home/wine/.bashrc"
# Setting up the wineprefix to force 32 bit architecture.
ENV WINEPREFIX /home/wine/.wine
ENV WINEARCH win32
# Disabling warning messages from wine, comment for debug purpose.
ENV WINEDEBUG -all
# Adding the link to the pulseaudio server for the client to find it.
ENV PULSE_SERVER unix:/run/user/1001/pulse/native
#########################START INSTALLATIONS##########################
# We don't want any interaction from package installation during the docker image building.
ENV DEBIAN_FRONTEND noninteractive
# We want the 32 bits version of wine allowing winetricks.
RUN dpkg --add-architecture i386 && \
# Updating and upgrading a bit.
apt-get update && \
apt-get upgrade -y && \
# We need software-properties-common to add ppas.
apt-get install -y --no-install-recommends software-properties-common && \
# Adding required ppas: graphics drivers and wine.
add-apt-repository ppa:graphics-drivers/ppa && \
add-apt-repository ppa:ubuntu-wine/ppa && \
apt-get update && \
# Installation of graphics driver.
apt-get install -y --no-install-recommends initramfs-tools nvidia-361 && \
# Installation of wine, winetricks and its utilities and temporary xvfb to install latest winetricks and its tricks during docker build.
apt-get install -y --no-install-recommends wine1.8 cabextract unzip p7zip wget zenity xvfb && \
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks && chmod +x winetricks && mv winetricks /usr/local/bin && \
# Installation of winbind to stop ntlm error messages.
apt-get install -y --no-install-recommends winbind && \
# Installation of p11 to stop p11 kit error messages.
apt-get install -y --no-install-recommends p11-kit-modules:i386 libp11-kit-gnome-keyring:i386 && \
# Installation of pulseaudio support for wine sound.
apt-get install -y --no-install-recommends pulseaudio:i386 libasound2-plugins:i386 && \
# Installation of winetricks' tricks as wine user, comment if not needed.
su -p -l wine -c winecfg && \
su -p -l wine -c 'xvfb-run -a winetricks -q corefonts' && \
su -p -l wine -c 'xvfb-run -a winetricks -q dotnet20' && \
su -p -l wine -c 'xvfb-run -a winetricks -q dotnet40' && \
su -p -l wine -c 'xvfb-run -a winetricks -q xna40' && \
su -p -l wine -c 'xvfb-run -a winetricks d3dx9' && \
su -p -l wine -c 'xvfb-run -a winetricks -q directplay' && \
# Cleaning up.
apt-get autoremove -y --purge software-properties-common && \
apt-get autoremove -y --purge xvfb && \
apt-get autoremove -y --purge && \
apt-get clean -y && \
rm -rf /home/wine/.cache && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
#########################END OF INSTALLATIONS##########################
# Launching the shell by default as wine user.
USER wine
CMD /bin/bash