summaryrefslogtreecommitdiff
path: root/other
diff options
context:
space:
mode:
Diffstat (limited to 'other')
-rw-r--r--other/docker/windows/get_packages.sh23
1 files changed, 17 insertions, 6 deletions
diff --git a/other/docker/windows/get_packages.sh b/other/docker/windows/get_packages.sh
index e3fb51f5..6c49a512 100644
--- a/other/docker/windows/get_packages.sh
+++ b/other/docker/windows/get_packages.sh
@@ -36,15 +36,26 @@ fi
36# Pacakges needed for running toxcore tests 36# Pacakges needed for running toxcore tests
37if [ "${SUPPORT_TEST}" = "true" ]; then 37if [ "${SUPPORT_TEST}" = "true" ]; then
38 apt-get install -y \ 38 apt-get install -y \
39 apt-transport-https \
39 curl \ 40 curl \
41 gnupg \
40 texinfo 42 texinfo
41 43
42 dpkg --add-architecture i386 44 # Add Wine package repository to use the latest Wine
43 apt-get update 45 echo "
44 apt-get install -y \ 46 # Wine-staging
45 wine \ 47 deb https://dl.winehq.org/wine-builds/debian/ stretch main
46 wine32 \ 48 " >> /etc/apt/sources.list
47 wine64 49 curl -o Release.key https://dl.winehq.org/wine-builds/Release.key
50 apt-key add Release.key
51
52 dpkg --add-architecture i386
53 apt-get update
54 apt-get install -y \
55 wine-staging \
56 wine-staging-amd64 \
57 wine-staging-dbg \
58 winehq-staging
48fi 59fi
49 60
50# Clean up to reduce image size 61# Clean up to reduce image size