File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 3131
3232# Upgrade all currently installed packages and install additional packages.
3333RUN apt-get update \
34- && apt-get -y install php-sqlite3 php-xdebug php-cli git wget sudo unzip libnotify-bin vim \
34+ && apt-get -y install php-sqlite3 php-xdebug php-cli git wget sudo unzip vim \
3535&& sed -ri 's/^zend.assertions\s *=\s *-1/zend.assertions = 1/g' /etc/php/${PHP_VERSION}/cli/php.ini \
3636&& apt-get -y autoremove && apt-get -y autoclean && apt-get clean && rm -rf /var/lib/apt/lists /tmp/* /var/tmp/*
3737
Original file line number Diff line number Diff line change @@ -116,10 +116,10 @@ dsh_project() {
116116# Command: ./dsh pull
117117# Fetches all images used by the project.
118118dsh_pull () {
119- # docker-compose doesn't resolve sub-dependencies in Dockerfiles.
120- docker pull uofa/s2i-shepherd-drupal
119+ # docker-compose doesn't resolve sub-dependencies in Dockerfiles and that's ok.
121120 docker-compose -f ${DOCKER_COMPOSE_FILE} pull --ignore-pull-failures
122- docker-compose -f ${DOCKER_COMPOSE_FILE} build
121+ # Check for dependent image updates with --pull before building.
122+ docker-compose -f ${DOCKER_COMPOSE_FILE} build --pull
123123}
124124
125125# Command: ./dsh nfs
You can’t perform that action at this time.
0 commit comments