8.3.7-r0 release

Update Drupal to 8.3.7 (fix CVE-2017-6924)
This commit is contained in:
Bitnami Bot 2017-08-17 16:03:02 +00:00
parent ae899e4a66
commit 81a09bf7cb
2 changed files with 20 additions and 11 deletions

View File

@ -1,21 +1,21 @@
FROM bitnami/minideb-extras:jessie-r20
FROM bitnami/minideb-extras:jessie-r21
LABEL maintainer "Bitnami <containers@bitnami.com>"
# Install required system packages and dependencies
RUN install_packages libapr1 libaprutil1 libbz2-1.0 libc6 libcomerr2 libcurl3 libexpat1 libffi6 libfreetype6 libgcc1 libgcrypt20 libgmp10 libgnutls-deb0-28 libgpg-error0 libgssapi-krb5-2 libhogweed2 libicu52 libidn11 libjpeg62-turbo libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblzma5 libmcrypt4 libncurses5 libnettle4 libp11-kit0 libpcre3 libpng12-0 libpq5 libreadline6 librtmp1 libsasl2-2 libssh2-1 libssl1.0.0 libstdc++6 libsybdb5 libtasn1-6 libtidy-0.99-0 libtinfo5 libuuid1 libxml2 libxslt1.1 zlib1g
RUN bitnami-pkg unpack apache-2.4.27-0 --checksum 27b8591b6564856428e2a3480949d549316e2f7e5bd207faa7b8c6e3a9bb9cc0
RUN bitnami-pkg unpack php-7.0.21-0 --checksum d3430bea08625b740b7b38222c31c06717b163b1e2c439b03ec845dc1c67b3da
RUN bitnami-pkg install mysql-client-10.1.25-0 --checksum 513ef36ab1efa5570332547c2027ae29886fe4bb56472de11ca083423a3fe366
RUN bitnami-pkg install libphp-7.0.21-0 --checksum 6962e432f76e6d9101590863b257be54ea1a3e2bf0c6dde1b243f23350794a61
RUN bitnami-pkg unpack php-7.0.22-0 --checksum 205c9587157116d8842e50a3e23d147fb06f495e61e22c8a96974eb3d7deae51
RUN bitnami-pkg install mysql-client-10.1.26-0 --checksum 731e07b76a06c8b7f2a0b79d528f2f1f37e49142f682ab27ab8f4edfc9176d83
RUN bitnami-pkg install libphp-7.0.22-0 --checksum 3fcf344e454baf0c0e7c94798f22aa823033891224a10d59883756ebd12bdf79
RUN bitnami-pkg install drush-8.1.12-0 --checksum f38554d1f7a7fad55457d82f7cb233e72ad0f8b102d06d97eadee52a83215296
RUN bitnami-pkg unpack drupal-8.3.6-0 --checksum 4d49856d2c2f95a0444de654d75c20631fe9ba6495a89864c66d8cdfd9bdbff9
RUN bitnami-pkg unpack drupal-8.3.7-0 --checksum faa420b5b0775d92c80cde412caaa93753dabdc5c1403d3ce775850307980565
COPY rootfs /
ENV APACHE_HTTPS_PORT_NUMBER="443" \
APACHE_HTTP_PORT_NUMBER="80" \
BITNAMI_APP_NAME="drupal" \
BITNAMI_IMAGE_VERSION="8.3.6-r0" \
BITNAMI_IMAGE_VERSION="8.3.7-r0" \
DRUPAL_EMAIL="user@example.com" \
DRUPAL_PASSWORD="bitnami" \
DRUPAL_USERNAME="user" \

View File

@ -18,6 +18,10 @@ jobs:
- checkout
- setup_remote_docker:
version: 17.06.0-ce
- run:
name: Upgrade system packages (workaround - https://github.com/docker-library/docker/issues/72)
command: |
apk upgrade --no-cache
- run:
name: Install dependencies
command: |
@ -49,8 +53,13 @@ jobs:
curl -sL https://raw.githubusercontent.com/bitnami/test-infra/master/circle/docker-development-image.sh | bash -
fi
deployment:
release:
tag: /^[0-9].*-r[0-9]+$/
commands:
- echo "workaround make tags run in 2.0 - https://discuss.circleci.com/t/git-tag-deploys-in-2-0/9493/8"
workflows:
version: 2
build-and-deploy:
jobs:
- build:
filters:
branches:
only: /.*/
tags:
only: /^[0-9].*-r[0-9]+$/