After the last update of a dockerize base image my containers that depends on dockerize all failed with bash: /usr/local/bin/dockerize: No such file or directory error. Although dockerize is in its place inside container and /usr/local/bin/ in PATH.
For example, following Dockerfile brings this issue.
FROM jwilder/dockerize AS dockerize
FROM nginx
COPY --from=dockerize /usr/local/bin/dockerize /usr/local/bin/dockerize
COPY ./nginx.conf /etc/nginx/nginx.conf
ENTRYPOINT [ "dockerize", "-template", "/etc/nginx/nginx.conf:/etc/nginx/nginx.conf" ]
CMD nginx
Does anyone meet this issue?
By the way, it would be great to tag images that are available on dockerhub, because for now there is no way to roll back to previous stable version – there is only :latest build.
After the last update of a dockerize base image my containers that depends on dockerize all failed with
bash: /usr/local/bin/dockerize: No such file or directoryerror. Although dockerize is in its place inside container and/usr/local/bin/in PATH.For example, following Dockerfile brings this issue.
Does anyone meet this issue?
By the way, it would be great to tag images that are available on dockerhub, because for now there is no way to roll back to previous stable version – there is only
:latestbuild.