When trying to install the Heroku CLI in a docker container, it seems to hang at:
Installing Heroku Toolbelt v4... done.
For more information on Toolbelt v4: https://github.com/heroku/heroku-cli
heroku-cli: Adding dependencies... done
heroku-cli: Installing core plugins...
Indefinitely. Using an ubuntu:14.04 base image and installing with:
RUN wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh \
&& heroku plugins:install heroku-docker
Any ideas?
My docker file looks like:
FROM ubuntu:14.04
RUN apt-get update -y && apt-get install -y wget
RUN wget -O- https://toolbelt.heroku.com/install-ubuntu.sh | sh \
&& heroku plugins:install heroku-docker
I'm running this within another docker container in our CI environment (Buildkite).
When trying to install the Heroku CLI in a docker container, it seems to hang at:
Indefinitely. Using an
ubuntu:14.04base image and installing with:Any ideas?
My docker file looks like:
I'm running this within another docker container in our CI environment (Buildkite).