ChatGPT解决这个技术问题 Extra ChatGPT

Cannot install packages inside docker Ubuntu image

I installed Ubuntu 14.04 image on docker. After that, when I try to install packages inside the ubuntu image, I'm getting unable to locate package error:

apt-get install curl

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package curl

How to fix this error?


C
Connor

It is because there is no package cache in the image, you need to run:

apt-get update

before installing packages, and if your command is in a Dockerfile, you'll then need:

apt-get -y install curl

To suppress the standard output from a command use -qq. E.g.

apt-get -qq -y install curl

this works for me, should i run -qq for all the times
-qq suppress output which you usually don't need in Dockerfile. Another nice trick - tell debconf that it is working in non interactive environment: echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
For some reason this doesn't work for me, still the same "E: Unable to locate package .." message
"apt-get-update" and "apt-get install curl" worked fine!
I found that this error also happens in docker when it runs out of space. I ran docker image prune to free up space and that fixed it for me.
c
creimers

From the docs in May 2017 2018 2019 2020 2021 2022

Always combine RUN apt-get update with apt-get install in the same RUN statement, for example RUN apt-get update && apt-get install -y package-bar (...) Using apt-get update alone in a RUN statement causes caching issues and subsequent apt-get install instructions fail. (...) Using RUN apt-get update && apt-get install -y ensures your Dockerfile installs the latest package versions with no further coding or manual intervention. This technique is known as “cache busting”.


I have to agree on this one. But is there no fix for this behaviour? It is quite annoying not to mention that it 1)increases the build time (since every update will go through the cache to see if there is something old) and 2)uses connection/bandwidth that can be used for something more useful.
I'm not a docker wizzzzard, but it is my understanding that this is necessary because of the overlay filesystem of the containers and how each line in a Dockerfile represents one self contained 'layer'.
h
halfer

Add following command in Dockerfile:

RUN apt-get update

C
Connor

Make sure you don't have any syntax errors in your Dockerfile as this can cause this error as well. A correct example is:

RUN apt-get update \
    && apt-get -y install curl \
    another-package

It was a combination of fixing a syntax error and adding apt-get update that solved the problem for me.


b
because_im_batman

Running apt-get update didn't solve it for me because, it always seemed to read the result of this command from cache and somehow the cache seemed to be corrupted. My suspicion is that, this happens if you have multiple docker containers having the same 'base image' ( for me it was python:3.8-slim).

So, here's what worked for me:

Stopping all Docker containers in the system

docker stop $(sudo docker ps -aq) 

Removing all dangling containers

docker container prune 

Removing all dangling images

docker image prune 

After running these commands the docker build seems to lose the corrupted cache and does a clean apt-get update which fetches the correct package info and the package installations progress as expected.


G
Groboclown

I found that mounting a local volume over /tmp can cause permission issues when the "apt-get update" runs, which prevents the package cache from being populated. Hopefully, this isn't something most people do, but it's something else to look for if you see this issue.


以司之名

I have met the same question when I try to install jre and I try the command "apt-get update" and then try "apt install default-jre" again and it worked !

I wish it can help you, good luck!


Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center.
D
David

I was getting the same error when trying to install cron and nginx-extras in my Dockerfile. I tried all the answers so far and no dice.

I then simply ran sudo service docker restart which fixed the issue for me.


u
unnamed-bull

You need to update the package list in your Ubuntu:

$ sudo apt-get update
$ sudo apt-get install <package_name>