From 30eb659055fa87360b74a9ce346cf254825af73e Mon Sep 17 00:00:00 2001 From: Stefan Werner Date: Sat, 11 Nov 2023 02:40:04 +0100 Subject: [PATCH] improve a bit more with design and usablility --- server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/Dockerfile b/server/Dockerfile index a3e7f03..44c43f3 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -26,7 +26,7 @@ RUN apt-get purge -y --auto-remove gcc RUN apt install # Copy the current directory contents into the container at /app ADD . /app/ -RUN apt install -y sqlite3 +RUN apt-get update && apt-get install -y sqlite3 ENV PYTHONIOENCODING=utf-8