mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-09-14 22:39:59 +00:00
Allow builds on older versions of sqlite
This commit is contained in:
7
Ubuntu-18.04.dockerfile
Normal file
7
Ubuntu-18.04.dockerfile
Normal file
@@ -0,0 +1,7 @@
|
||||
FROM ubuntu:18.04
|
||||
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg lsb-release pkg-config libsqlite3-dev libicu-dev gcc g++ meson
|
||||
COPY ci/arrow-ubuntu18.04.list /etc/apt/sources.list.d/apache-arrow.list
|
||||
RUN curl -L -o /usr/share/keyrings/apache-arrow-keyring.gpg https://dl.bintray.com/apache/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-keyring.gpg && apt-get update && apt-get install -y libparquet-dev
|
||||
WORKDIR /src
|
||||
COPY . /src
|
||||
RUN mkdir builddir && meson builddir && cd builddir && ninja
|
Reference in New Issue
Block a user