summaryrefslogtreecommitdiffstats
path: root/26/fpm
diff options
context:
space:
mode:
authorDaniel Rudolf <github.com@daniel-rudolf.de>2023-05-31 14:13:56 +0200
committerGitHub <noreply@github.com>2023-05-31 12:13:56 +0000
commit570ac60ed20c5197eb050c8ec55eae5d9c3e58eb (patch)
tree1d2f324f5ab2c264a22032dd2f8ddbbd387ef5bc /26/fpm
parentf2c8cb599e6b1fbf750aee93dd3ce60889e02487 (diff)
Add versions.json (#1995)
* Add %%DEBIAN_VERSION%% placeholder Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de> * Replace %%BASE_DOWNLOAD_URL%% placeholder by %%DOWNLOAD_URL{_ASC}%% Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de> * Add version.json 'versions.json' contains information about the latest branches and variants. It is managed by `./update.sh`, there's no need to edit this file manually, just run `./update.sh`. Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de> * Run update.sh Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de> --------- Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
Diffstat (limited to '26/fpm')
-rw-r--r--26/fpm/Dockerfile6
1 files changed, 2 insertions, 4 deletions
diff --git a/26/fpm/Dockerfile b/26/fpm/Dockerfile
index d4d594f7..303f0efb 100644
--- a/26/fpm/Dockerfile
+++ b/26/fpm/Dockerfile
@@ -128,10 +128,8 @@ RUN set -ex; \
apt-get update; \
apt-get install -y --no-install-recommends $fetchDeps; \
\
- curl -fsSL -o nextcloud.tar.bz2 \
- "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2"; \
- curl -fsSL -o nextcloud.tar.bz2.asc \
- "https://download.nextcloud.com/server/releases/nextcloud-${NEXTCLOUD_VERSION}.tar.bz2.asc"; \
+ curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-26.0.2.tar.bz2"; \
+ curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-26.0.2.tar.bz2.asc"; \
export GNUPGHOME="$(mktemp -d)"; \
# gpg key from https://nextcloud.com/nextcloud.asc
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \