mirror of
https://git.cloudron.io/cloudron/freshrss-app
synced 2025-09-21 04:27:32 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
03bd193fd6 | ||
|
6a3a7d92a3 | ||
|
2ff1b29ace | ||
|
d3682bc960 |
@@ -180,3 +180,7 @@
|
|||||||
* Updated PHPMailer library to 6.1.6 #3024
|
* Updated PHPMailer library to 6.1.6 #3024
|
||||||
* Add blogger.com to the default list of forced HTTPS #3088
|
* Add blogger.com to the default list of forced HTTPS #3088
|
||||||
|
|
||||||
|
[1.12.0]
|
||||||
|
* Update base image to v3
|
||||||
|
* Update PHP to 7.4
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "RSS feed reader",
|
"tagline": "RSS feed reader",
|
||||||
"version": "1.11.0",
|
"version": "1.12.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
18
Dockerfile
18
Dockerfile
@@ -1,4 +1,4 @@
|
|||||||
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
||||||
|
|
||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
@@ -26,15 +26,15 @@ RUN a2enmod headers expires deflate mime dir rewrite setenvif
|
|||||||
|
|
||||||
RUN rm -rf /var/lib/php && ln -s /run/php /var/lib/php
|
RUN rm -rf /var/lib/php && ln -s /run/php /var/lib/php
|
||||||
|
|
||||||
RUN crudini --set /etc/php/7.3/apache2/php.ini PHP upload_max_filesize 64M && \
|
RUN crudini --set /etc/php/7.4/apache2/php.ini PHP upload_max_filesize 64M && \
|
||||||
crudini --set /etc/php/7.3/apache2/php.ini PHP post_max_size 64M && \
|
crudini --set /etc/php/7.4/apache2/php.ini PHP post_max_size 64M && \
|
||||||
crudini --set /etc/php/7.3/apache2/php.ini PHP memory_limit 64M && \
|
crudini --set /etc/php/7.4/apache2/php.ini PHP memory_limit 64M && \
|
||||||
crudini --set /etc/php/7.3/apache2/php.ini Session session.save_path /run/php/session && \
|
crudini --set /etc/php/7.4/apache2/php.ini Session session.save_path /run/php/session && \
|
||||||
crudini --set /etc/php/7.3/apache2/php.ini Session session.gc_probability 1 && \
|
crudini --set /etc/php/7.4/apache2/php.ini Session session.gc_probability 1 && \
|
||||||
crudini --set /etc/php/7.3/apache2/php.ini Session session.gc_divisor 100
|
crudini --set /etc/php/7.4/apache2/php.ini Session session.gc_divisor 100
|
||||||
|
|
||||||
RUN ln -s /app/data/php.ini /etc/php/7.3/apache2/conf.d/99-cloudron.ini && \
|
RUN ln -s /app/data/php.ini /etc/php/7.4/apache2/conf.d/99-cloudron.ini && \
|
||||||
ln -s /app/data/php.ini /etc/php/7.3/cli/conf.d/99-cloudron.ini
|
ln -s /app/data/php.ini /etc/php/7.4/cli/conf.d/99-cloudron.ini
|
||||||
|
|
||||||
ADD start.sh /app/code/start.sh
|
ADD start.sh /app/code/start.sh
|
||||||
|
|
||||||
|
1083
test/package-lock.json
generated
1083
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,14 +9,14 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^84.0.0",
|
"chromedriver": "^88.0.0",
|
||||||
"ejs": "^3.1.3",
|
"ejs": "^3.1.6",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mkdirp": "^1.0.4",
|
"mkdirp": "^1.0.4",
|
||||||
"mocha": "^8.0.1",
|
"mocha": "^8.3.0",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"selenium-server-standalone-jar": "^3.141.59",
|
"selenium-server-standalone-jar": "^3.141.59",
|
||||||
"selenium-webdriver": "^3.6.0",
|
"selenium-webdriver": "^3.6.0",
|
||||||
"superagent": "^5.3.1"
|
"superagent": "^6.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -18,9 +18,6 @@ var by = webdriver.By,
|
|||||||
var username = 'admin',
|
var username = 'admin',
|
||||||
password = 'changeme';
|
password = 'changeme';
|
||||||
|
|
||||||
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
|
||||||
|
|
||||||
|
|
||||||
describe('Application life cycle test', function () {
|
describe('Application life cycle test', function () {
|
||||||
this.timeout(0);
|
this.timeout(0);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user