Skip to content

Commit

Permalink
fix: add extra dependencies for 2019.1 (libnotify4, libunwind-dev, li…
Browse files Browse the repository at this point in the history
…bssl1.0)

Close #57
  • Loading branch information
mob-sakai committed Jan 18, 2021
1 parent 236c762 commit 4f5740e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions editor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,15 @@ RUN [ `echo $module | grep -v '\(webgl\|linux-il2cpp\)'` ] && exit 0 || : \
clang \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

#=======================================================================================
# [2019.1.x] libnotify4 libunwind-dev libssl1.0
#=======================================================================================
RUN [ `echo $version | grep -v '^2019.1.'` ] && exit 0 || : \
&& apt-get -q update \
&& apt-get -q install -y --no-install-recommends --allow-downgrades \
libnotify4 \
libunwind-dev \
libssl1.0 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

0 comments on commit 4f5740e

Please sign in to comment.