From fa72d03266f6d837772f95053bc1ab20b6cd48cb Mon Sep 17 00:00:00 2001 From: Georgii Surkov Date: Wed, 11 Aug 2021 17:40:43 +0300 Subject: [PATCH] Add git to Docker build environment --- build_linux.sh | 1 + docker/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/build_linux.sh b/build_linux.sh index 12aee8c4..5f71444b 100755 --- a/build_linux.sh +++ b/build_linux.sh @@ -5,6 +5,7 @@ set -ex TARGET='qFlipper' BUILDDIR='build' +export OUTPUT=$TARGET-x86_64.AppImage export QML_SOURCES_PATHS='..' mkdir -p $BUILDDIR && cd $BUILDDIR diff --git a/docker/Dockerfile b/docker/Dockerfile index 5ec0e523..52180d1e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,6 +12,7 @@ RUN add-apt-repository ppa:beineri/opt-qt-5.15.2-bionic && \ wget \ file \ pkg-config \ + git \ libfuse2 \ libusb-1.0-0-dev \ ca-certificates \