Sha256: 514cdf0443c3a2e65b5fc287db74fab06961bfffe2847f9a7f7e0b65977ef478
Contents?: true
Size: 492 Bytes
Versions: 1
Compression:
Stored size: 492 Bytes
Contents
ARG RUBY_VERSION=3.2.2 FROM ruby:${RUBY_VERSION} ARG DUCKDB_VERSION=0.10.2 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-0.10.2.0 | Dockerfile |