fixes Dockerfile

This commit is contained in:
2026-04-19 23:57:17 +03:00
parent f54b65caa2
commit b6fa84b70c

View File

@@ -2,9 +2,9 @@ FROM dart:stable-sdk
WORKDIR /app WORKDIR /app
# sqlite3 package uses system libsqlite3 at runtime. # sqlite3 package needs libsqlite3.so at runtime.
RUN apt-get update \ 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/* && rm -rf /var/lib/apt/lists/*
COPY pubspec.yaml pubspec.lock ./ COPY pubspec.yaml pubspec.lock ./