From f7eab92cd52cb71cc2a788a1d5175f008039482d Mon Sep 17 00:00:00 2001 From: Greg Baker Date: Mon, 5 Dec 2022 15:02:38 -0600 Subject: [PATCH] forcing vim install via apt apt peculating error preventing container build without this flag. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37e2c02..71a0fb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN pip install --upgrade pip RUN pip install -r docReq.txt RUN apt update -y -RUN apt install -y vim +RUN apt install -y vim --force-yes RUN python manage.py migrate