wunderio / image-fuzzy-alpine-devshell

https://quay.io/repository/wunder/fuzzy-alpine-devshell
GNU General Public License v3.0
0 stars 1 forks source link

Latest alpine-php image forces php entrypoint #29

Closed james-nesbitt closed 8 years ago

james-nesbitt commented 8 years ago

The latest dev shell image extends the alpine-php image. That image sets an entrypoint. This means that the CMD statement in the Dockerfile doesn't make sense, as you cannot use php7 to run shell scripts.

$/> docker run --rm -t -i -v "$(pwd):/app/target" wundertools-image-fuzzy-developershell

docker: Error response from daemon: Container command '/usr/bin/php-fpm7' not found or does not exist..
james-nesbitt commented 8 years ago

This affects 1.0, and so a fix should trigger a new release tag for a bugfix

james-nesbitt commented 8 years ago

you can bypass this issue by using the old CMD as an entrypoint

$/> docker run --rm -t -i --entrypoint="/usr/bin/ssh-agent" --entrypoint="/bin/zsh" wundertools-image-fuzzy-developershell