Adds workaround for expired DST cert
This commit is contained in:
parent
f822fa7e15
commit
fa6673e739
1 changed files with 6 additions and 1 deletions
|
|
@ -16,7 +16,12 @@ RUN composer install
|
|||
|
||||
FROM trafex/alpine-nginx-php7:ba1dd422
|
||||
|
||||
RUN apk update && apk add --no-cache busybox-suid sudo php7-redis php7-pdo php7-pdo_mysql php7-fileinfo php7-event shadow gettext bash apache2-utils logrotate
|
||||
RUN apk update && apk add --no-cache busybox-suid sudo php7-redis php7-pdo php7-pdo_mysql \
|
||||
php7-fileinfo php7-event shadow gettext bash apache2-utils logrotate
|
||||
|
||||
# fix expired DST Cert
|
||||
RUN sed -i '/^mozilla\/DST_Root_CA_X3.crt$/ s/^/!/' /etc/ca-certificates.conf \
|
||||
&& update-ca-certificates
|
||||
|
||||
# symlink nginx logs to stdout/stderr for supervisord
|
||||
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue