apt-add-repository: Dockerfile'da komut bulunamadı hatası


92

Terminalimde çok basit bir Docker dosyası yaptım, temelde şunları yaptım:

mkdir pgrouted
cd pgrouted
touch Dockerfile

Şimdi nano düzenleyicide Docker dosyasını açıyorum ve Docker dosyasına aşağıdaki komutları ekliyorum:

FROM ubuntu

MAINTAINER Gautam <gautamx07@yahoo.com>

LABEL Description="pgrouting excercise" Vendor="skanatek" Version="1.0"

ENV BBOX="-122.8,45.4,-122.5,45.6"

# Add pgRouting launchpad repository
RUN sudo apt-add-repository -y ppa:ubuntugis/ppa
RUN sudo apt-add-repository -y ppa:georepublic/pgrouting
RUN sudo apt-get update

# Install pgRouting package (for Ubuntu 14.04)
RUN sudo apt-get install postgresql-9.3-pgrouting

# Install osm2pgrouting package
RUN sudo apt-get install osm2pgrouting

# Install workshop material (optional, but maybe slightly outdated)
RUN sudo apt-get install pgrouting-workshop

# For workshops at conferences and events:
# Download and install from http://trac.osgeo.org/osgeo/wiki/Live_GIS_Workshop_Install
RUN wget --no-check-certificate https://launchpad.net/~georepublic/+archive/pgrouting/+files/pgrouting-workshop_2.0.6-ppa1_all.deb

RUN sudo dpkg -i pgrouting-workshop_2.0.6-ppa1_all.deb

# Review: Not sure weather this should be in the dockerfile
RUN cp -R /usr/share/pgrouting/workshop ~/Desktop/pgrouting-workshop

# Log in as user "user"
RUN psql -U postgres

# Create routing database
RUN CREATE DATABASE routing;

# Add PostGIS functions
RUN CREATE EXTENSION postgis;

# Add pgRouting core functions
CREATE EXTENSION pgrouting;

# Download using Overpass XAPI (larger extracts possible than with default OSM API)
wget --progress=dot:mega -O "sampledata.osm" "http://www.overpass-api.de/api/xapi?*[bbox=${BBOX}][@meta]"

Dockerfile'ın tamamı bir bakışta BURADA görülebilir .

Şimdi Dockerfile'ı oluşturmaya çalıştığımda, şöyle:

docker build -t gautam/pgrouted:v1 .

Dockerfile çalışıyor ve sonra aşağıdaki hatayı alıyorum:

Step 4 : RUN sudo apt-add-repository -y ppa:ubuntugis/ppa
 ---> Running in c93c3c5fd5e8
sudo: apt-add-repository: command not found
The command '/bin/sh -c sudo apt-add-repository -y ppa:ubuntugis/ppa' returned a non-zero code: 1

Neden bu hatayı alıyorum?

Yanıtlar:


121

apt-add-repository , temel Ubuntu görüntüsünde değildir. Önce yüklemeniz gerekecek. Deneyinapt-get install software-properties-common

Bu arada, Dockerfile'da sudo kullanmanız gerekmez çünkü komutla başka bir kullanıcıya geçmediğiniz sürece komutlar varsayılan olarak root olarak çalışır USER.


2
i ekledin pt-get install software-properties-commonilk olarak RUN pt-get install software-properties-common, yani şimdi ben bu hata almak gibi komuta chopapp.com/#8a4vdsnw
Alexander Solonik

1
Ubuntu sürümünüze bağlı olarak, ya python-software-propertiesda olabilirsoftware-properties-common
user2915097

4
ubuntu 16.04'te bu, 46MiB ek veri yüklemek istiyor: / basit bir komutu yürütmek için çok fazla.
cweiske

27
Ne python-software-properties ne de software-properties-common geçerli değil
Jonathan Neufeld

10
Sadece hala biraz hata yapanlar için. Aynı hat üzerinde güncelleştirme koyarak ve yüklemek çözülür: apt-get update && apt-get install -y software-properties-common. Önce güncellemeyi çalıştırdıktan sonra yükleme çalışmıyor gibi görünüyor. Muhtemelen bir Docker hatası
FedFranz

57

apt-add-repositoryKomutu çalıştırmadan önce bu satırları ekleyin

RUN apt-get update && \
    apt-get install -y software-properties-common && \
    rm -rf /var/lib/apt/lists/*

2
İlk satıra --fix-missing eklemek zorunda kaldım.
Edhowler

1
Ne anlamı var rm -rf /var/lib/apt/lists/*?
jumpnett

rmEtkilerini undoes apt-get update. Paket meta verilerini kap katmanında saklamanın bir anlamı yoktur. Daha sonra apt-get installek paketler istiyorsanız, apt-get updateyine de yenisini yapmalısınız .
Toxaris
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.