Coder Social home page Coder Social logo

Sqlite3 about dart-docker HOT 1 CLOSED

dart-lang avatar dart-lang commented on May 29, 2024
Sqlite3

from dart-docker.

Comments (1)

cpswan avatar cpswan commented on May 29, 2024

A few assumptions:

  • You're going to start out with the Dart official image (that comes from this repo).
  • You're trying to get to a minimal container that has just enough libraries to run your Dart app.
  • You're going to use a two stage build to firstly compile your AOT binary within the Dart container then copy it into your FROM scratch container.

The Dart image doesn't have Sqlite3 there by default. So the library needs to be installed. It's that library that will then be used via dart:ffi for packages like drift or sqlite3.

RUN set -eux; \
    apt-get update; \
    apt-get install -y --no-install-recommends libsqlite3-0

The library then needs to be copied into /runtime so that it's there with the other libraries that are needed for an AOT binary to dynamically link to:

RUN set -eux; \
    case "$(dpkg --print-architecture)" in \
        amd64) \
            TRIPLET="x86_64-linux-gnu" ;; \
        armhf) \
            TRIPLET="arm-linux-gnueabihf" ;; \
        arm64) \
            TRIPLET="aarch64-linux-gnu" ;; \
        *) \
            echo "Unsupported architecture" ; \
            exit 5;; \
    esac; \
    FILES="/lib/$TRIPLET/libsqlite3.so.0"; \
    for f in $FILES; do \
        dir=$(dirname "$f"); \
        mkdir -p "/runtime$dir"; \
        cp --archive --link --dereference --no-target-directory "$f" "/runtime$f"; \
    done

The section above copies liberally from the Dockerfile-debian.template in this repo, which is designed for multiple architectures. If you know your target architecture is fixed then things can be simplified quite a bit by simply copying the single libsqlite3.so.0 shared library file.

The second stage of the Dockerfile then proceeds as normal, copying in the /runtime, which will now have the sqlite3 library along with libc and the other AOT dependencies:

FROM scratch
COPY --from=build /runtime/ /

NB I've not tested this, so please excuse any typos. I'm pretty sure that the libraries libsqlite3-0.so.0 links to are already present in runtime:

ldd /lib/x86_64-linux-gnu/libsqlite3.so.0

        linux-vdso.so.1 (0x00007ffdb45f1000)
        libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fa502bd1000)
        libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fa5029f0000)
        /lib64/ld-linux-x86-64.so.2 (0x00007fa502e13000)

linux-vdso.so.1 is a virtual shared object rather than a library file on disk.

from dart-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.