无法在docker debian:jessie中安装软件包

无法在docker debian:jessie中安装软件包,docker,dockerfile,Docker,Dockerfile,我正在尝试在基于debian的容器中安装git postgres的图片是基于debian:jessie dockerfile FROM postgres:9.4 RUN apt-get -qq update RUN apt-get install git-core RUN apt-get install osm2pgsql 无法找到git和osm2pgsql 错误 我遗漏了什么?我不知道是什么导致了“找不到包”错误,但是您的apt get调用遗漏了-y,这意味着您将得到: After t

我正在尝试在基于debian的容器中安装git

postgres的图片是基于debian:jessie

dockerfile

FROM postgres:9.4


RUN apt-get -qq update

RUN apt-get install git-core
RUN apt-get install osm2pgsql
无法找到git和osm2pgsql

错误


我遗漏了什么?

我不知道是什么导致了“找不到包”错误,但是您的
apt get
调用遗漏了
-y
,这意味着您将得到:

After this operation, 33.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] Abort.
The command '/bin/sh -c apt-get install git-core' returned a non-zero code: 1
否则,您的Dockerfile对我来说很好:

Step 1 : RUN apt-get -qq update
 ---> Running in 0430a990fa81
 ---> 54f88a02d81e
Removing intermediate container 0430a990fa81
Step 2 : RUN apt-get install git-core
 ---> Running in 0fdad2e3c35b
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  ca-certificates git git-man less libcurl3-gnutls liberror-perl libidn11
  librtmp1 libssh2-1 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6
  libxmuu1 openssh-client patch rsync xauth
Suggested packages:
  gettext-base git-daemon-run git-daemon-sysvinit git-doc git-el git-email
  git-gui gitk gitweb git-arch git-cvs git-mediawiki git-svn ssh-askpass
  libpam-ssh keychain monkeysphere ed diffutils-doc openssh-server
Recommended packages:
  ssh-client
The following NEW packages will be installed:
  ca-certificates git git-core git-man less libcurl3-gnutls liberror-perl
  libidn11 librtmp1 libssh2-1 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6
  libxext6 libxmuu1 openssh-client patch rsync xauth
0 upgraded, 21 newly installed, 0 to remove and 1 not upgraded.
Need to get 8,059 kB of archives.
After this operation, 33.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] Abort.
The command '/bin/sh -c apt-get install git-core' returned a non-zero code: 1
ERROR: failed to build larsks/sodocker:latest
过时的。“git core”包已重命名为“git”
Step 1 : RUN apt-get -qq update
 ---> Running in 0430a990fa81
 ---> 54f88a02d81e
Removing intermediate container 0430a990fa81
Step 2 : RUN apt-get install git-core
 ---> Running in 0fdad2e3c35b
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  ca-certificates git git-man less libcurl3-gnutls liberror-perl libidn11
  librtmp1 libssh2-1 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6
  libxmuu1 openssh-client patch rsync xauth
Suggested packages:
  gettext-base git-daemon-run git-daemon-sysvinit git-doc git-el git-email
  git-gui gitk gitweb git-arch git-cvs git-mediawiki git-svn ssh-askpass
  libpam-ssh keychain monkeysphere ed diffutils-doc openssh-server
Recommended packages:
  ssh-client
The following NEW packages will be installed:
  ca-certificates git git-core git-man less libcurl3-gnutls liberror-perl
  libidn11 librtmp1 libssh2-1 libx11-6 libx11-data libxau6 libxcb1 libxdmcp6
  libxext6 libxmuu1 openssh-client patch rsync xauth
0 upgraded, 21 newly installed, 0 to remove and 1 not upgraded.
Need to get 8,059 kB of archives.
After this operation, 33.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] Abort.
The command '/bin/sh -c apt-get install git-core' returned a non-zero code: 1
ERROR: failed to build larsks/sodocker:latest