Skip to content

Commit 0652be8

Browse files
committed
Merge branch 'hypernext'
* hypernext: remove deprecated --no-suggest composer option bump version and changelog add ldap package and strict samesite cookie use image instead of image-reference for github action try to use the v2 tag for github action
2 parents 6266bdd + d53e090 commit 0652be8

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/scan.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
- uses: actions/checkout@v1
1111
- name: Build the Docker image
1212
run: docker build -t elabftw/elabimg:ci .
13-
- uses: anchore/scan-action@master
13+
- uses: anchore/scan-action@v2
1414
with:
15-
image-reference: "elabftw/elabimg:ci"
15+
image: "elabftw/elabimg:ci"
1616
fail-build: true
1717
- name: anchore inline scan JSON results
1818
run: for j in `ls ./anchore-reports/*.json`; do echo "---- ${j} ----"; cat ${j}; echo; done

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Container image version
22
# Note: the version here is from Dockerfile:ELABIMG_VERSION not the tagged one
33

4+
## 2.1.0
5+
6+
* Add php7-ldap
7+
* Add Strict SameSite cookie
8+
49
## 2.0.1
10+
511
* Fix supervisord waring on start about user root
612
* Fix ELABIMG_VERSION getting added at each restart
713
* Fix ln command producing warning on restart

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM alpine:3.11
55
ENV ELABFTW_VERSION 3.5.6
66

77
# this is versioning for the container image
8-
ENV ELABIMG_VERSION 2.0.1
8+
ENV ELABIMG_VERSION 2.1.0
99

1010
LABEL org.label-schema.name="elabftw" \
1111
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 \
4343
php7-fileinfo \
4444
php7-fpm \
4545
php7-json \
46+
php7-ldap \
4647
php7-mbstring \
4748
php7-opcache \
4849
php7-openssl \
@@ -71,7 +72,7 @@ RUN echo "$(curl -sS https://composer.github.io/installer.sig) -" > composer-set
7172
&& php composer-setup.php && rm composer-setup.php*
7273

7374
# 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
7576

7677
# redirect nginx logs to stout and stderr
7778
RUN ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

src/run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ phpConf() {
152152
sed -i -e "s/session.cookie_httponly.*/session.cookie_httponly = true/" /etc/php7/php.ini
153153
sed -i -e "s/;session.cookie_secure.*/session.cookie_secure = true/" /etc/php7/php.ini
154154
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
155156
# set redis as session handler if requested
156157
if ($use_redis); then
157158
sed -i -e "s:session.save_handler = files:session.save_handler = redis:" /etc/php7/php.ini

0 commit comments

Comments
 (0)