From 11b91f739e821bb0332c650dd0407b8025abdef7 Mon Sep 17 00:00:00 2001 From: Mar Alegre Date: Sat, 1 Jan 2022 17:19:35 -0500 Subject: [PATCH] added nicer progress bar to wget --- gitea/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/Containerfile b/gitea/Containerfile index 01550dd..887a950 100644 --- a/gitea/Containerfile +++ b/gitea/Containerfile @@ -76,7 +76,7 @@ RUN mv pg_hba.conf /etc/postgresql/${PSQLV:?}/main/pg_hba.conf ### # dowload gitea -RUN wget https://dl.gitea.io/gitea/${GITEAV:?}/gitea-${GITEAV:?}-linux-amd64 && \ +RUN wget --progress=dot:giga https://dl.gitea.io/gitea/${GITEAV:?}/gitea-${GITEAV:?}-linux-amd64 && \ mv gitea-${GITEAV:?}-linux-amd64 /usr/local/bin/gitea && \ chmod +x /usr/local/bin/gitea