From b6fa84b70c6bf234d5a0037a6264cc3913d827dc Mon Sep 17 00:00:00 2001 From: ziabric Date: Sun, 19 Apr 2026 23:57:17 +0300 Subject: [PATCH] fixes Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d848415..64e932f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM dart:stable-sdk WORKDIR /app -# sqlite3 package uses system libsqlite3 at runtime. +# sqlite3 package needs libsqlite3.so at runtime. RUN apt-get update \ - && apt-get install -y --no-install-recommends libsqlite3-0 curl \ + && apt-get install -y --no-install-recommends libsqlite3-dev curl \ && rm -rf /var/lib/apt/lists/* COPY pubspec.yaml pubspec.lock ./