Skip to content

Commit

Permalink
Add apt-upgrade for base
Browse files Browse the repository at this point in the history
Add apt-upgrade for the base so that if the underlying Debian
that is used for the base of the php image has updates, such as for
Apache HTTP Server, they will be picked up even if the base php image
has not been rebuilt and already picked them up.
  • Loading branch information
skoranda committed Jan 7, 2022
1 parent ff5b269 commit 950fe6f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion comanage-registry-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ FROM php:7.3.33-apache-bullseye
# --with-mbstring
# but xls, pdo, pdo_mysql, pdo_pgsql, mysqli, pgsql,
# and ldap extensions must be built.
RUN apt-get update && apt-get install -y \
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y \
libldap-2.4-2 \
libldap2-dev \
libmariadb-dev \
Expand Down

0 comments on commit 950fe6f

Please sign in to comment.