Skip to content

Commit

Permalink
Merge pull request #2944 from laradock/fix-2943
Browse files Browse the repository at this point in the history
feat(imagemagick supported formats): php-worker horizon
  • Loading branch information
bestlong committed Apr 9, 2021
2 parents 1fa50ef + 397babf commit 89ad4c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion laravel-horizon/Dockerfile
Expand Up @@ -98,7 +98,7 @@ ARG IMAGEMAGICK_VERSION=latest
ENV IMAGEMAGICK_VERSION ${IMAGEMAGICK_VERSION}
RUN set -eux; \
if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
apk add --update --no-cache imagemagick-dev; \
apk add --update --no-cache imagemagick-dev imagemagick; \
if [ $(php -r "echo PHP_MAJOR_VERSION;") = "8" ]; then \
cd /tmp && \
if [ ${IMAGEMAGICK_VERSION} = "latest" ]; then \
Expand Down
2 changes: 1 addition & 1 deletion php-worker/Dockerfile
Expand Up @@ -98,7 +98,7 @@ ARG IMAGEMAGICK_VERSION=latest
ENV IMAGEMAGICK_VERSION ${IMAGEMAGICK_VERSION}
RUN set -eux; \
if [ ${INSTALL_IMAGEMAGICK} = true ]; then \
apk add --update --no-cache imagemagick-dev; \
apk add --update --no-cache imagemagick-dev imagemagick; \
if [ $(php -r "echo PHP_MAJOR_VERSION;") = "8" ]; then \
cd /tmp && \
if [ ${IMAGEMAGICK_VERSION} = "latest" ]; then \
Expand Down

0 comments on commit 89ad4c8

Please sign in to comment.