Acabo de hacer un archivo Docker muy simple en mi terminal, básicamente hice lo siguiente:
mkdir pgrouted
cd pgrouted
touch Dockerfile
Ahora abro el archivo Docker en el editor nano y agrego los siguientes comandos al archivo Docker:
FROM ubuntu
MAINTAINER Gautam <[email protected]>
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]"
Todo el Dockerfile se puede ver AQUÍ de un vistazo.
Ahora, cuando trato de construir el Dockerfile, así:
docker build -t gautam/pgrouted:v1 .
El Dockerfile se ejecuta y luego aparece el siguiente error:
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
¿Por qué recibo este error?
pt-get install software-properties-common
que el primerRUN pt-get install software-properties-common
comando, como tal, ahora me sale este error chopapp.com/#8a4vdsnwpython-software-properties
osoftware-properties-common
apt-get update && apt-get install -y software-properties-common
. Ejecutar la actualización primero y luego instalar no parece funcionar. Posiblemente un error de DockerAgregue estas líneas antes de ejecutar el
apt-add-repository
comandofuente
rm -rf /var/lib/apt/lists/*
?rm
deshace los efectos de laapt-get update
. No tiene sentido almacenar los metadatos del paquete en la capa contenedora. Si más tarde deseaapt-get install
paquetes adicionales, debe hacer uno nuevo deapt-get update
todos modos.