Sha256: ef137e46f2826ea222728a18f82e7ccf6f4d4069a6d0326ecfaf645113f5b170
Contents?: true
Size: 491 Bytes
Versions: 1
Compression:
Stored size: 491 Bytes
Contents
ARG RUBY_VERSION=3.3.5 FROM ruby:${RUBY_VERSION} ARG DUCKDB_VERSION=1.1.1 RUN apt update -qq && \ apt install -y build-essential curl git wget COPY getduckdb.sh . RUN ./getduckdb.sh RUN unzip duckdb.zip -d libduckdb RUN mv libduckdb/duckdb.* /usr/local/include RUN mv libduckdb/libduckdb.so /usr/local/lib RUN ldconfig /usr/local/lib COPY . /root/ruby-duckdb WORKDIR /root/ruby-duckdb RUN git config --global --add safe.directory /root/ruby-duckdb RUN bundle install RUN rake build
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
duckdb-1.1.1.0 | Dockerfile |