1
0
mirror of https://git.cloudron.io/cloudron/freshrss-app synced 2025-09-16 10:19:15 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Girish Ramakrishnan
8a318646c6 Version 1.1.1. 2018-09-08 16:54:46 -07:00
Girish Ramakrishnan
81724b280f Update FreshRSS to 1.11.1 2018-09-08 16:47:32 -07:00
4 changed files with 7 additions and 7 deletions

View File

@@ -47,3 +47,6 @@
[1.1.0]
* Update FreshRSS to 1.11.0
[1.1.1]
* Update FreshRSS to to 1.11.1

View File

@@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "RSS feed reader",
"version": "1.1.0",
"version": "1.1.1",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {

View File

@@ -1,4 +1,4 @@
This app packages FreshRSS <upstream>1.11.0</upstream>.
This app packages FreshRSS <upstream>1.11.1</upstream>.
FreshRSS is a self-hosted RSS feed aggregator such as Leed or Kriss Feed.

View File

@@ -4,18 +4,15 @@ RUN apt-get update \
&& apt-get -y install php php-curl php-gmp php-intl php-mbstring php-xml php-zip \
libapache2-mod-php mysql-client php-mysql
ENV EXTENSIONS_VERSION b63f55d6fdd8e93da846bb741c3fed12d50909be
RUN mkdir -p /app/code
WORKDIR /app/code
# contains fix for extensions_path (see #2)
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.11.0.tar.gz | tar -zxvf - --strip-components=1
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.11.1.tar.gz | tar -zxvf - --strip-components=1
RUN mv data data-orig && ln -s /app/data data
# official extensions
RUN wget https://github.com/FreshRSS/Extensions/archive/${EXTENSIONS_VERSION}.tar.gz -O - | tar -xz --strip-components=1 -C /app/code/extensions && \
RUN wget https://github.com/FreshRSS/Extensions/archive/2d0358e75961cbfcac7c2cbe09b098905ff67803.tar.gz -O - | tar -xz --strip-components=1 -C /app/code/extensions && \
mv /app/code/extensions /app/code/extensions-orig && \
ln -s /app/data/extensions /app/code/extensions