From 22902c3d2e23134869bb37de9793d950b2385cf1 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 31 Oct 2019 15:56:46 -0700 Subject: [PATCH] Update FreshRSS to 1.15.0 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 02ce36d..8d3c911 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c RUN mkdir -p /app/code WORKDIR /app/code -RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.14.3.tar.gz | tar -zxvf - --strip-components=1 +ARG VERSION=1.15.0 +RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1 RUN mv data data-orig && ln -s /app/data data