From e7e9cf65ae0acdba31aeb5c338050aacaef1b235 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Thu, 29 Apr 2021 16:05:21 +0200 Subject: [PATCH] Install curl into the image as well --- abra.sh | 2 +- docker-setup.sh.tmpl | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/abra.sh b/abra.sh index b153cf2..06817de 100644 --- a/abra.sh +++ b/abra.sh @@ -1,2 +1,2 @@ export APP_INI_VERSION=v7 -export DOCKER_SETUP_SH_VERSION=v1 +export DOCKER_SETUP_SH_VERSION=v2 diff --git a/docker-setup.sh.tmpl b/docker-setup.sh.tmpl index 310e8f7..abea632 100644 --- a/docker-setup.sh.tmpl +++ b/docker-setup.sh.tmpl @@ -13,3 +13,5 @@ mkdir -p ${GITEA_CUSTOM} && chmod 0500 ${GITEA_CUSTOM} # Prepare temp folder mkdir -p ${GITEA_TEMP} && chmod 0700 ${GITEA_TEMP} if [ ! -w ${GITEA_TEMP} ]; then echo "${GITEA_TEMP} is not writable"; exit 1; fi + +apk add --no-cache curl