How to run wget inside Ubuntu Docker image?

前端 未结 3 2021
情话喂你
情话喂你 2021-01-30 06:34

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         


        
3条回答
  •  無奈伤痛
    2021-01-30 06:40

    I had this problem recently where apt install wget does not find anything. As it turns out apt update was never run.

    apt update
    apt install wget
    

    After discussing this with a coworker we mused that apt update is likely not run in order to save both time and space in the docker image.

提交回复
热议问题