From a2caf1f61f103e75d2aadacba04579e6bf3e1d75 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Sun, 28 Oct 2018 07:14:03 +0100 Subject: [PATCH] [Docker] baseimage: add libcairo2 (#21) Fixes #15. --- docker/ubuntu/baseimage/Makefile | 2 +- docker/ubuntu/baseimage/bootstrap.sh | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/ubuntu/baseimage/Makefile b/docker/ubuntu/baseimage/Makefile index 7eab0b4..dd97c14 100644 --- a/docker/ubuntu/baseimage/Makefile +++ b/docker/ubuntu/baseimage/Makefile @@ -1,4 +1,4 @@ -VERSION=0.0.7 +VERSION=0.0.8 all: build diff --git a/docker/ubuntu/baseimage/bootstrap.sh b/docker/ubuntu/baseimage/bootstrap.sh index 31321a1..a4e9128 100755 --- a/docker/ubuntu/baseimage/bootstrap.sh +++ b/docker/ubuntu/baseimage/bootstrap.sh @@ -14,6 +14,8 @@ MISC_TOOLS=(git subversion zip unzip vim wget p7zip-full bash-completion) LUAJIT_DEPS=($LIB32_GCC_DEV libc6-dev-amd64:i386) GLIB_DEPS="gettext" +APPIMAGE_DEPS=(libsdl2-2.0-0 libcairo2) + echo " ------------------------------------------" echo "| installing dependencies..." echo "| $LUAJIT_DEPS " @@ -28,7 +30,7 @@ apt-get install -y \ $GLIB_DEPS \ "${ARM_SF_TC[@]}" "${ARM_HF_TC[@]}" \ "${LUAJIT_DEPS[@]}" \ - libsdl2-2.0-0 + "${APPIMAGE_DEPS[@]}" # --upgrade to prevent urllib3 errors pip3 install transifex-client --upgrade