From 5a535e8b151f853589275a9f2e13b5d847e7cb13 Mon Sep 17 00:00:00 2001 From: creylopez Date: Thu, 9 Jan 2025 12:49:07 +0000 Subject: [PATCH] Pongo apt-get update --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2e2be56..fc202d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ADD . $APP_HOME USER 0 # Install the dependencies -RUN apt-get install -y sqlite3 +RUN apt-get update && apt-get install -y sqlite3 RUN pip install -U "pip>=19.3.1" && \ pip install -r $APP_HOME/requirements.txt && \