Created
May 12, 2020 06:47
-
-
Save virus-warnning/cddf9a2770ca641c8e4bcfaf69433b32 to your computer and use it in GitHub Desktop.
Ubuntu 20 容器安裝 Wine Stable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
# 先把套件庫切換到國網中心加速 | |
RUN sed -i 's/\(archive\|security\).ubuntu.com/free.nchc.org.tw/' /etc/apt/sources.list && \ | |
dpkg --add-architecture i386 && \ | |
apt-get update | |
# 搞定時區問題 | |
# 如果沒處理, 安裝 software-properties-common 可能會弄爛 | |
RUN export DEBIAN_FRONTEND=noninteractive && \ | |
apt-get install tzdata && \ | |
ln -fs /usr/share/zoneinfo/Asia/Taipei /etc/localtime && \ | |
dpkg-reconfigure -f noninteractive tzdata | |
# 安裝相依套件 | |
# 注意!! 安裝 software-properties-common 的時候可能會需要互動式輸入時區而卡住 | |
RUN apt-get install -y wget gnupg2 software-properties-common | |
# 這裡需要用到 wget gnupg2 | |
RUN wget -O - https://dl.winehq.org/wine-builds/winehq.key | apt-key add - | |
# 這裡需要用到 software-properties-common | |
RUN add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' && \ | |
apt-get update && \ | |
apt-get install -y --install-recommends winehq-stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment