New version authelia bitwarden-desktop element-web joplin-desktop vaultwarden vaultwarden-web

This commit is contained in:
thomas 2022-08-12 23:00:22 +02:00
parent 9359602185
commit 5ecefd0f87
22 changed files with 120 additions and 148 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
VERSION=4.36.3
VERSION=4.36.4
[ -e ./lib/function.sh ] && source ./lib/function.sh
@ -9,24 +9,19 @@ DEPOT=https://github.com/authelia/authelia.git
GIT_VERSION=v${VERSION}
DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M)
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=4
IMAGE_SIZE=6
STEP="envinit prebuild build makedeb"
STEP="minimum_package envinit default_prebuild build makedeb"
envinit() {
configure_depot_nodejs
apt-get update
apt-get dist-upgrade -y
apt install -y --no-install-recommends git wget ca-certificates dpkg fakeroot build-essential
install_nodejs
apt install -y --no-install-recommends build-essential nodejs
install_go
wget -qO - https://get.pnpm.io/install.sh | sh -
}
prebuild(){
[ -e /tmp/${APP} ] && rm -fr /tmp/${APP}
git clone --depth 1 -b ${GIT_VERSION} ${DEPOT} /tmp/${APP}
}
build() {
cd /tmp/${APP}/
PATH=$PATH:/usr/local/go/bin:/root/.local/share/pnpm