diff --git a/3/Dockerfile b/3/Dockerfile index 4329069e..1e9a0b0b 100644 --- a/3/Dockerfile +++ b/3/Dockerfile @@ -1,12 +1,12 @@ -FROM bitnami/minideb-extras:jessie-r19 +FROM bitnami/minideb-extras:jessie-r21 LABEL maintainer "Bitnami " # 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-5.6.31-0 --checksum 52b9c324a764055bdbb1b07f313f938d68f5ab3202f83be729fcd24e0bf8cfa6 -RUN bitnami-pkg install mysql-client-10.1.25-0 --checksum 513ef36ab1efa5570332547c2027ae29886fe4bb56472de11ca083423a3fe366 -RUN bitnami-pkg install libphp-5.6.31-0 --checksum 64482dba01e676c8c2014086642a3062732f7f64e967c1c199c99b7009656c02 +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 unpack opencart-3.0.2-0-0 --checksum 027e86a84e087b121b5cd81dbd7489703b370605c8e6446776016246cd652092 COPY rootfs / @@ -14,7 +14,7 @@ COPY rootfs / ENV APACHE_HTTPS_PORT_NUMBER="443" \ APACHE_HTTP_PORT_NUMBER="80" \ BITNAMI_APP_NAME="opencart" \ - BITNAMI_IMAGE_VERSION="3.0.2-0-r0" \ + BITNAMI_IMAGE_VERSION="3.0.2-0-r1" \ MARIADB_HOST="mariadb" \ MARIADB_PASSWORD="" \ MARIADB_PORT_NUMBER="3306" \ diff --git a/circle.yml b/circle.yml index 3d0b70c4..5e5e5760 100644 --- a/circle.yml +++ b/circle.yml @@ -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]+$/