-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (32 loc) · 1.36 KB
/
Dockerfile
File metadata and controls
36 lines (32 loc) · 1.36 KB
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
FROM dorowu/ubuntu-desktop-lxde-vnc:bionic-lxqt
# install language pack
RUN apt-get update; \
apt-get install -y apt-transport-https language-pack-zh-hans ttf-wqy-microhei; \
apt-get autoclean; \
apt-get clean; \
apt-get autoremove
ENV LANG=zh_CN.UTF-8 \
LC_ALL=zh_CN.UTF-8
# download BaiduNetdisk
RUN apt-get install -y wget; \
wget -P /tmp https://issuecdn.baidupcs.com/issue/netdisk/yunguanjia/BaiduNetdisk_6.7.0.8.exe; \
chmod 777 tmp/BaiduNetdisk_6.7.0.8.exe; \
apt-get autoclean; \
apt-get clean; \
apt-get autoremove
# install wine
RUN apt-get install -y gnupg2; \
dpkg --add-architecture i386; \
wget -P /tmp -nc https://dl.winehq.org/wine-builds/winehq.key; \
apt-key add /tmp/winehq.key; \
rm /tmp/winehq.key; \
echo "deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main" >> /etc/apt/sources.list; \
apt-get update; \
apt-get install -y --install-recommends winehq-stable; \
wine --version; \
wget -P /root/.cache/wine https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86_64.msi; \
wget -P /root/.cache/wine https://dl.winehq.org/wine/wine-gecko/2.47/wine_gecko-2.47-x86.msi; \
wget -P /root/.cache/wine https://dl.winehq.org/wine/wine-mono/4.7.1/wine-mono-4.7.1.msi; \
apt-get autoclean; \
apt-get clean; \
apt-get autoremove