diff --git a/images/ubuntu/base/Dockerfile b/images/ubuntu/base/Dockerfile index 1985dcc5..d88bb403 100644 --- a/images/ubuntu/base/Dockerfile +++ b/images/ubuntu/base/Dockerfile @@ -25,8 +25,6 @@ RUN apt-get -q update \ libnss3 \ libxtst6 \ libxss1 \ - build-essential \ - clang \ cpio \ lsb-release \ python \ @@ -54,7 +52,7 @@ RUN apt-get -q update \ && apt-get -q install -y --no-install-recommends software-properties-common \ && add-apt-repository -y ppa:ubuntu-toolchain-r/test \ && apt-get -q install -y --only-upgrade libstdc++6 \ - && add-apt-repository -y --remove ppa:ubuntu-toolchain-r/test \ + && add-apt-repository -y --remove ppa:ubuntu-toolchain-r/test \ && apt-get -q remove -y --auto-remove software-properties-common \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* diff --git a/images/ubuntu/editor/Dockerfile b/images/ubuntu/editor/Dockerfile index 581cdb5f..81383796 100644 --- a/images/ubuntu/editor/Dockerfile +++ b/images/ubuntu/editor/Dockerfile @@ -198,6 +198,19 @@ RUN echo "$module" | grep -q -v 'webgl' \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* +#======================================================================================= +# [webgl, il2cpp] python python-setuptools build-essential clang +#======================================================================================= +RUN echo "$module" | grep -q -v '\(webgl\|linux-il2cpp\)' \ + && exit 0 \ + || : \ + && apt-get -q update \ + && apt-get -q install -y --no-install-recommends --allow-downgrades \ + build-essential \ + clang \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* + #======================================================================================= # [2019.x] libnotify4 libunwind-dev libssl1.0 #=======================================================================================