mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-28 15:45:44 +03:00
STAM
2952d25ace
* replaced 7z to 7zz in most base images * updated tools like lazygit * reworked tools downloading
30 lines
1.5 KiB
Bash
30 lines
1.5 KiB
Bash
##################################################################
|
|
# perforce client binary
|
|
##################################################################
|
|
P4_VERSION=r23.2
|
|
P4_DOWNLOAD_URL=https://filehost.perforce.com/perforce/${P4_VERSION}/bin.linux26x86_64/p4
|
|
|
|
##################################################################
|
|
# 7z official binary
|
|
##################################################################
|
|
SZ_VERSION=7z2407
|
|
SZ_DOWNLOAD_URL=https://www.7-zip.org/a/${SZ_VERSION}-linux-x64.tar.xz
|
|
|
|
##################################################################
|
|
# LazyGit official binary
|
|
##################################################################
|
|
LAZYGIT_VERSION=0.42.0
|
|
LAZYGIT_DOWNLOAD_URL=https://github.com/jesseduffield/lazygit/releases/download/v${LAZYGIT_VERSION}/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz
|
|
|
|
##################################################################
|
|
# dumb init
|
|
##################################################################
|
|
DUMB_INIT_VERSION=1.2.5
|
|
DUMB_INIT_DOWNLOAD_URL=https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64
|
|
|
|
##################################################################
|
|
# gosu
|
|
##################################################################
|
|
GOSU_VER=1.17
|
|
GOSU_DOWNLOAD_URL=https://github.com/tianon/gosu/releases/download/${GOSU_VER}/gosu-amd64
|