Skip to content

Commit 6469a7a

Browse files
committed
Use ubuntugis PPA in Dockerfile
1 parent 4a59b22 commit 6469a7a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packaging/docker/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
FROM ubuntu:xenial
88

99
# GDAL 2 from ubuntugis
10-
RUN echo "deb http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu xenial main" >> /etc/apt/sources.list
10+
RUN echo "deb http://ppa.launchpad.net/ubuntugis/ppa/ubuntu xenial main" >> /etc/apt/sources.list
1111
RUN gpg --keyserver keyserver.ubuntu.com --recv 314DF160
1212
RUN gpg --export --armor 314DF160 | apt-key add -
1313

14-
RUN apt-get update && apt-get install -y openssl libgdal20 gdal-bin
14+
RUN apt-get update && apt-get install -y --allow-unauthenticated openssl libgdal20 gdal-bin
1515

16-
ADD t-rex-*.deb .
17-
RUN dpkg -i t-rex-*.deb
18-
RUN rm t-rex-*.deb
16+
ADD t-rex-*.deb /
17+
RUN dpkg -i /t-rex-*.deb
18+
RUN rm /t-rex-*.deb
1919

2020
USER www-data
2121

0 commit comments

Comments
 (0)