Skip to content

Commit

Permalink
chore: Update Dockerfile (#3593)
Browse files Browse the repository at this point in the history
As of Dec 2018, the Wine repo key changed names to winehq.key
  • Loading branch information
Vkzem authored and develar committed Jan 9, 2019
1 parent 0ba9c4f commit 26fdd8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/wine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM electronuserland/builder:latest

RUN apt-get update && apt-get install -y --no-install-recommends software-properties-common && dpkg --add-architecture i386 && curl -L https://dl.winehq.org/wine-builds/Release.key > Release.key && apt-key add Release.key && apt-add-repository https://dl.winehq.org/wine-builds/ubuntu && \
RUN apt-get update && apt-get install -y --no-install-recommends software-properties-common && dpkg --add-architecture i386 && curl -L https://dl.winehq.org/wine-builds/winehq.key > winehq.key && apt-key add winehq.key && apt-add-repository https://dl.winehq.org/wine-builds/ubuntu && \
apt-get update && \
apt-get -y purge software-properties-common libdbus-glib-1-2 python3-dbus python3-gi python3-pycurl python3-software-properties && \
apt-get install -y --no-install-recommends winehq-stable && \
# clean
apt-get clean && rm -rf /var/lib/apt/lists/* && unlink Release.key
apt-get clean && rm -rf /var/lib/apt/lists/* && unlink winehq.key

RUN curl -L https://github.com/electron-userland/electron-builder-binaries/releases/download/wine-2.0.3-mac-10.13/wine-home.zip > /tmp/wine-home.zip && unzip /tmp/wine-home.zip -d /root/.wine && unlink /tmp/wine-home.zip

ENV WINEDEBUG -all,err+all
ENV WINEDLLOVERRIDES winemenubuilder.exe=d
ENV WINEDLLOVERRIDES winemenubuilder.exe=d

0 comments on commit 26fdd8a

Please sign in to comment.