File tree 4 files changed +12
-4
lines changed
4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 10
10
- uses : actions/checkout@v1
11
11
- name : Build the Docker image
12
12
run : docker build -t elabftw/elabimg:ci .
13
- - uses : anchore/scan-action@master
13
+ - uses : anchore/scan-action@v2
14
14
with :
15
- image-reference : " elabftw/elabimg:ci"
15
+ image : " elabftw/elabimg:ci"
16
16
fail-build : true
17
17
- name : anchore inline scan JSON results
18
18
run : for j in `ls ./anchore-reports/*.json`; do echo "---- ${j} ----"; cat ${j}; echo; done
Original file line number Diff line number Diff line change 1
1
# Container image version
2
2
# Note: the version here is from Dockerfile: ELABIMG_VERSION not the tagged one
3
3
4
+ ## 2.1.0
5
+
6
+ * Add php7-ldap
7
+ * Add Strict SameSite cookie
8
+
4
9
## 2.0.1
10
+
5
11
* Fix supervisord waring on start about user root
6
12
* Fix ELABIMG_VERSION getting added at each restart
7
13
* Fix ln command producing warning on restart
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM alpine:3.11
5
5
ENV ELABFTW_VERSION 3.5.6
6
6
7
7
# this is versioning for the container image
8
- ENV ELABIMG_VERSION 2.0.1
8
+ ENV ELABIMG_VERSION 2.1.0
9
9
10
10
LABEL org.label-schema.name="elabftw" \
11
11
org.label-schema.description="Run nginx and php-fpm to serve elabftw" \
@@ -43,6 +43,7 @@ RUN apk upgrade -U -a && apk add --no-cache \
43
43
php7-fileinfo \
44
44
php7-fpm \
45
45
php7-json \
46
+ php7-ldap \
46
47
php7-mbstring \
47
48
php7-opcache \
48
49
php7-openssl \
@@ -71,7 +72,7 @@ RUN echo "$(curl -sS https://composer.github.io/installer.sig) -" > composer-set
71
72
&& php composer-setup.php && rm composer-setup.php*
72
73
73
74
# install dependencies
74
- RUN /elabftw/composer.phar install --prefer-dist --no-progress --no-suggest --no- dev -a && yarn config set network-timeout 300000 && yarn install --pure-lockfile && yarn run buildall && rm -rf node_modules && yarn cache clean && /elabftw/composer.phar clear-cache
75
+ RUN /elabftw/composer.phar install --prefer-dist --no-progress --no-dev -a && yarn config set network-timeout 300000 && yarn install --pure-lockfile && yarn run buildall && rm -rf node_modules && yarn cache clean && /elabftw/composer.phar clear-cache
75
76
76
77
# redirect nginx logs to stout and stderr
77
78
RUN ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log
Original file line number Diff line number Diff line change @@ -152,6 +152,7 @@ phpConf() {
152
152
sed -i -e " s/session.cookie_httponly.*/session.cookie_httponly = true/" /etc/php7/php.ini
153
153
sed -i -e " s/;session.cookie_secure.*/session.cookie_secure = true/" /etc/php7/php.ini
154
154
sed -i -e " s/session.use_strict_mode.*/session.use_strict_mode = 1/" /etc/php7/php.ini
155
+ sed -i -e " s/session.cookie_samesite.*/session.cookie_samesite = \" Strict\" /" /etc/php7/php.ini
155
156
# set redis as session handler if requested
156
157
if ($use_redis ); then
157
158
sed -i -e " s:session.save_handler = files:session.save_handler = redis:" /etc/php7/php.ini
You can’t perform that action at this time.
0 commit comments