运行在基于ubuntu或基于高山的docker映像中的Windows基本应用程序

时间:2020-08-16 19:59:33

标签: docker dockerfile ubuntu-16.04 alpine wine

我们开发了基于Windows的应用程序,并尝试将其转换为可在Linux基本环境中作为docker运行。 不幸的是,第3方库之一不能转换为Linux环境。 我们构建了docker镜像,它是ubuntu 16.04 + wine 4.0 + winetricks,我们的应用程序可以在其上运行它,但是所有3个组件(ubuntu,wine + winetrick)的重量都超过3GB。 以下是我们用于构建Docker映像的Dockerfile的一部分 我们的应用程序是64位的,并结合了python和C ++代码 我们如何减小Docker的大小? 还有另一种方法可以在Linux环境中将Windows基本应用程序作为docker容器运行吗?

FROM ubuntu:16.04
# reccomended to add 32bit arch for wine
RUN dpkg --add-architecture i386 \
# install things to help install wine
 && apt-get update \
 && apt-get install -y  --allow-unauthenticated wget software-properties-common software-properties-common debconf-utils python-software-properties apt-transport-https cabextract telnet xvfb unzip build-essential \
# register repo and install winehq
 && wget -nc https://dl.winehq.org/wine-builds/Release.key \
 && apt-key add Release.key \
 && wget -nc https://dl.winehq.org/wine-builds/winehq.key \
 && apt-key add winehq.key \
 && apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ \
 && apt-get update \
 && apt-get install -y xvfb \
 && apt-get install --install-recommends -y  --allow-unauthenticated winehq-stable

# setup vars for wine
ENV DISPLAY=":0.0"
ENV WINEARCH="win64"
ENV WINEPREFIX="/root/.wine64"
ENV WINESYSTEM32="/root/.wine64/drive_c/windows/system32"
ENV WINEDLLOVERRIDES="mscoree,mshtml="
ENV WINEDEBUG=-all


COPY scripts /root/scripts

# pull down winetricks, and install requirements
# vcrun2015 and vcrun2010 are Visual Studio C++ Redistributables
RUN set -e \
 && mkdir -p $WINEPREFIX \
 && cd $WINEPREFIX \
 && wget https://raw.githubusercontent.com/Winetricks/winetricks/20190615/src/winetricks \
 && chmod +x winetricks \
 && xvfb-run wine wineboot --init \
 && xvfb-run wineserver -w \
 && xvfb-run sh ./winetricks -q d3dx9 corefonts vcrun2015 

RUN set -x \
    && pythonVersions='python3.7' \
    && apt-get update \
    && apt-get install -y --allow-unauthenticated --no-install-recommends software-properties-common \
    && apt-add-repository -y ppa:deadsnakes/ppa  \
    && apt-get update \
    && apt-get install -y  --allow-unauthenticated --no-install-recommends $pythonVersions \
    && rm -rf /var/lib/apt/lists/* \
...

2 个答案:

答案 0 :(得分:0)

尝试浏览https://hub.docker.com/r/suchja/wine作为基本图片的一种选择。我已经亲自使用过,看来还可以。

答案 1 :(得分:0)

您安装了许多不需要的软件包,应仔细阅读

https://www.dajobe.org/blog/2015/04/18/making-debian-docker-images-smaller/

解释原因

您应该删除xvfb(我想您在wine的安装和配置过程中需要xvfb,但之后不需要)和所有“推荐”软件包

也看

https://github.com/wagoodman/dive

如果您需要查看docker映像的效率,这是一个很好的工具

也使用

https://github.com/jwilder/docker-squash

它可以节省一些空间。

好的狩猎