Skip to content

Commit

Permalink
Use buster variant in geos.Dockerfile
Browse files Browse the repository at this point in the history
The `golang:1.17` image uses Debian bullseye as its base, which doesn't
have the required version of GEOS available. By downgrading back to
buster, GEOS is now available.
  • Loading branch information
peterstace committed May 13, 2022
1 parent d5d10af commit 35040ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/geos.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:1.17
FROM golang:1.17-buster
RUN apt-get -y update && \
apt-get install -y libgeos-dev=3.7.1-1 && \
rm -rf /var/lib/apt/lists/*
ENV PATH=/usr/lib/go-1.15/bin:${PATH}
ENV PATH=/usr/lib/go-1.17/bin:${PATH}

0 comments on commit 35040ff

Please sign in to comment.