I\'m trying to download a Debian package inside a Ubuntu container as follows:
sudo docker run ubuntu:14.04 wget https://downloads-packages.s3.amazonaws.com/ubun
If you're running ubuntu container directly without a local Dockerfile you can ssh into the container and enable root control by entering su then apt-get install -y wget
su
apt-get install -y wget