Skip to content

Commit

Permalink
redistribute installations based on their weight
Browse files Browse the repository at this point in the history
  • Loading branch information
webbertakken committed Mar 19, 2022
1 parent 6edb506 commit 9b0148b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
4 changes: 1 addition & 3 deletions images/ubuntu/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ RUN apt-get -q update \
libnss3 \
libxtst6 \
libxss1 \
build-essential \
clang \
cpio \
lsb-release \
python \
Expand Down Expand Up @@ -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/*
Expand Down
13 changes: 13 additions & 0 deletions images/ubuntu/editor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
#=======================================================================================
Expand Down

0 comments on commit 9b0148b

Please sign in to comment.