Skip to content

Commit

Permalink
Install wget for healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
bfren committed Feb 1, 2021
1 parent 8e8b78c commit f9a9097
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions 5.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ LABEL maintainer="Ben Green <ben@bcgdesign.com>" \
org.label-schema.vendor="Ben Green" \
org.label-schema.schema-version="1.0"

RUN a2enmod rewrite
RUN docker-php-ext-install mysql
RUN \
a2enmod rewrite \
&& docker-php-ext-install mysql \
&& apt update \
&& apt install wget

COPY ./overlay /

Expand Down
7 changes: 5 additions & 2 deletions Dockerfile-automated
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ LABEL maintainer="Ben Green <ben@bcgdesign.com>" \
org.label-schema.vendor="Ben Green" \
org.label-schema.schema-version="1.0"

RUN a2enmod rewrite
RUN docker-php-ext-install mysql
RUN \
a2enmod rewrite \
&& docker-php-ext-install mysql \
&& apt update \
&& apt install wget

COPY ./overlay /

Expand Down

0 comments on commit f9a9097

Please sign in to comment.