8👍
✅
You forgot apt-get update
in your Dockerfile
before running apt-get install
.
Consider
Dockerfile
...
RUN apt-get update && apt-get install --yes libgdal-dev
...
Source:stackexchange.com