Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# github: perrygeo/docker-gdal-base
# docker: perrygeo/gdal-base
#----------------------------------- #
FROM python:3.8-slim-buster as builder
FROM python:3.9-slim-buster as builder

RUN apt-get update
RUN apt-get install -y --no-install-recommends \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ See [`perrygeo/gdal-base` on Dockerhub](https://hub.docker.com/r/perrygeo/gdal-b

## Packages and version numbers

Dockerfiles are based on [`python:3.8-slim-buster`](https://github.com/docker-library/python/blob/master/3.8/buster/slim/Dockerfile) which in turn is based on Debian 10/Buster.
Dockerfiles are based on [`python:3.9-slim-buster`](https://github.com/docker-library/python/blob/master/3.9/buster/slim/Dockerfile) which in turn is based on Debian 10/Buster.

The following versions built from source:

Expand Down Expand Up @@ -90,7 +90,7 @@ RUN pip uninstall cython --yes

# ------ Second stage
# Start from a clean image
FROM python:3.8-slim-buster as final
FROM python:3.9-slim-buster as final

# Install some required runtime libraries from apt
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion tests/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN pip uninstall cython --yes

# ------ Second stage
# Start from a clean image
FROM python:3.6-slim-stretch as final
FROM python:3.9-slim-stretch as final

# Install some required runtime libraries from apt
RUN apt-get update \
Expand Down