Skip to content

Commit f979061

Browse files
committed
Tag 4.2.0.
Merge branch 'release/4.2.0'
2 parents 796e855 + 2666e2d commit f979061

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fi
3131

3232
# Upgrade all currently installed packages and install additional packages.
3333
RUN 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

dsh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ dsh_project() {
116116
# Command: ./dsh pull
117117
# Fetches all images used by the project.
118118
dsh_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

0 commit comments

Comments
 (0)