I’ve just tested that URL in my browser, and it works fine.
Connecting to https://packagecloud.io/install/repositories/StackStorm/stable/config_file.list?os=Ubuntu&dist=trusty&source=script
returns
# this file was generated by packagecloud.io for
# the repository at https://packagecloud.io/StackStorm/stable
deb https://packagecloud.io/StackStorm/stable/ubuntu/ trusty main
deb-src https://packagecloud.io/StackStorm/stable/ubuntu/ trusty main
Same via curl
:
extreme@EWC:~$ apt_url="https://packagecloud.io/install/repositories/StackStorm/stable/config_file.list?os=Ubuntu&dist=trusty&source=script"
extreme@EWC:~$ echo $apt_url
https://packagecloud.io/install/repositories/StackStorm/stable/config_file.list?os=Ubuntu&dist=trusty&source=script
extreme@EWC:~$ curl $apt_url
# this file was generated by packagecloud.io for
# the repository at https://packagecloud.io/StackStorm/stable
deb https://packagecloud.io/StackStorm/stable/ubuntu/ trusty main
deb-src https://packagecloud.io/StackStorm/stable/ubuntu/ trusty main
extreme@EWC:~$
My guess is that your local proxy configuration is messed up. This will be related to your Docker setup -
it’s not related to the StackStorm proxy configuration. You’ll need to see what the right way is to pass
a proxy to a Docker setup.
Is there a reason you’re building your own image, rather than just using the pre-built image?