Files
status-app/docker-linux-app-image.sh

13 lines
317 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2020-05-14 16:19:01 -04:00
# Workaround for permissions problems with `jenkins` user inside the container
cp -R . ~/status-desktop
cd ~/status-desktop
2020-05-14 16:19:01 -04:00
2026-07-01 10:52:34 +03:00
git clean -dfx && rm -rf vendor/* && make -j4 V=1 update
make V=1 pkg
2020-05-14 16:19:01 -04:00
# Make AppImage build accessible to the docker host
cd - && cp -R ~/status-desktop/pkg .
chmod -R 775 ./pkg