diff --git a/containers/ddev-webserver/Dockerfile b/containers/ddev-webserver/Dockerfile index a07d8089bdd..bd3171a2fae 100644 --- a/containers/ddev-webserver/Dockerfile +++ b/containers/ddev-webserver/Dockerfile @@ -87,7 +87,8 @@ RUN apt-get -qq update && \ libpcre3 \ openssh-client \ php-imagick \ - php-uploadprogress && \ + php-uploadprogress \ + sqlite3 && \ for v in $PHP_VERSIONS; do apt-get -qq install --no-install-recommends --no-install-suggests -y $v-bcmath $v-bz2 $v-curl $v-cgi $v-cli $v-common $v-fpm $v-gd $v-intl $v-json $v-mysql $v-pgsql $v-mbstring $v-opcache $v-soap $v-sqlite3 $v-readline $v-xml $v-xmlrpc $v-zip libapache2-mod-$v ; done && \ # These are items not yet available in php7.4 \ for v in php5.6 php7.0 php7.1 php7.2 php7.3; do apt-get -qq install --no-install-recommends --no-install-suggests -y $v-apcu $v-memcached $v-redis $v-xdebug ; done && \ diff --git a/pkg/version/version.go b/pkg/version/version.go index 1720675b7d3..84ddc631109 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -49,7 +49,7 @@ var DockerComposeFileFormatVersion = "3.6" var WebImg = "drud/ddev-webserver" // WebTag defines the default web image tag for drud dev -var WebTag = "v1.11.0" // Note that this can be overridden by make +var WebTag = "20191014_heddn_sqlite3" // Note that this can be overridden by make // DBImg defines the default db image used for applications. var DBImg = "drud/ddev-dbserver"