We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When installing v1.0.5 into docker:19.03.6 container the binary is unable to be launched
# habitus -version sh: habitus: not found # md5sum /usr/local/bin/habitus 4f89ce1fe21429117c1b4b65b92d0bf8 /usr/local/bin/habitus
Prior versions 1.0.3 and 1.0.4 are successful.
export HABITUS_VERSION=1.0.5 mkdir -p fred && cd fred ( echo "FROM docker:19.03.6"; echo "ARG HABITUS_VERSION=1.0.5"; echo "RUN wget -O /usr/local/bin/habitus https://github.com/cloud66-oss/habitus/releases/download/\${HABITUS_VERSION}/habitus_linux_amd64"; echo "RUN chmod a+x /usr/local/bin/habitus"; ) > Dockerfile.habitus; docker build -t habitus:${HABITUS_VERSION} -f Dockerfile.habitus . docker run --rm -ti habitus:${HABITUS_VERSION} habitus -version /usr/local/bin/docker-entrypoint.sh: exec: line 61: habitus: not found
Changing HABITUS_VERSION to 1.0.4 yields the correct result:
HABITUS_VERSION
1.0.4
export HABITUS_VERSION=1.0.4 docker build -t habitus:${HABITUS_VERSION} --build-arg HABITUS_VERSION=${HABITUS_VERSION} -f Dockerfile.habitus . docker run --rm -ti habitus:${HABITUS_VERSION} habitus -version Habitus - vv1.0.4 (c) 2017 Cloud 66 Inc.
The text was updated successfully, but these errors were encountered:
Does this work with 1.0.5 on a Docker version other than 19.03.6?
Sorry, something went wrong.
Just tried docker:18
I suspect the build for 1.0.5 for linux_amd64 is broken 1.0.5 for mac/darwin_amd64 works
@khash - I've done some more testing
Something must have changed in the build system for alpine to have stopped working
No branches or pull requests
Issue:
When installing v1.0.5 into docker:19.03.6 container the binary is unable to be launched
Prior versions 1.0.3 and 1.0.4 are successful.
Steps to reproduce:
Changing
HABITUS_VERSION
to1.0.4
yields the correct result:The text was updated successfully, but these errors were encountered: