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