Skip to content

Commit 95949b7

Browse files
authored
upgrade Docker container image to use Ubuntu 20.04 (#35)
* upgrade Docker container to 20.04 * prepare for v0.4.12 release
1 parent 432a0df commit 95949b7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:18.04
1+
FROM ubuntu:20.04
22
LABEL maintainer="Ian Rees <ian@interline.io>,Drew Dara-Abrams <drew@interline.io>"
33

44
ENV DEBIAN_FRONTEND=noninteractive
@@ -11,7 +11,7 @@ RUN apt-get update -y && apt-get install \
1111
osmctools \
1212
osmium-tool \
1313
pyosmium \
14-
python-gdal \
14+
libgdal-dev \
1515
gdal-bin \
1616
awscli \
1717
software-properties-common \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ PlanetUtils is a "high level" library that makes use of [Osmosis](https://wiki.o
5555
Make sure you have [Docker](https://www.docker.com/community-edition) installed. Then:
5656

5757
```sh
58-
docker pull interline/planetutils:release-v0.4.11
58+
docker pull interline/planetutils:release-v0.4.12
5959
```
6060

6161
Any of the example commands below can be executed with `docker run`. It may be helpful to mount a local directory inside the container for persistence and to access output files.
6262

6363
- Example of using `docker run` with the `data` directory mounted as `/data`:
6464

6565
```sh
66-
docker run --rm -v ${PWD}/data:/data -t interline/planetutils:release-v0.4.11 <command>
66+
docker run --rm -v ${PWD}/data:/data -t interline/planetutils:release-v0.4.12 <command>
6767
```
6868

6969
### Using Homebrew on Mac OS

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
long_description = f.read()
1010

1111
setup(name='interline-planetutils',
12-
version='0.4.11',
12+
version='0.4.12',
1313
description='Interline PlanetUtils',
1414
long_description=long_description,
1515
url='https://github.com/interline-io/planetutils',

0 commit comments

Comments
 (0)