From 5d6a6dc7f72e03bf3dd53ef8dda32b371d35166b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Lemayian=20=E2=9C=A8?= <877919+DavidLemayian@users.noreply.github.com> Date: Mon, 11 Jul 2022 10:16:01 +0300 Subject: [PATCH] fix: update dockerfile to be specific on debian Building this dockerfile fails as it downloads bullseye that has gdal v3.2.2 while the pipfile requires v.2.4.0 This is a patch to ensure it works each time you build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ecc5730..6a1daf0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8 +FROM python:3.8-buster RUN apt-get -qq update && \ apt-get install -qq -y \