1
0
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:
Addie Morrison
2019-12-08 20:47:11 -06:00
parent 608ddbbe95
commit 4675bd2d3f
5 changed files with 32 additions and 5 deletions

7
Ubuntu-16.04.dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM ubuntu:16.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-ubuntu16.04.list /etc/apt/sources.list.d/apache-arrow.list
RUN curl https://dist.apache.org/repos/dist/dev/arrow/KEYS | apt-key add - && apt-get update && apt-get install -y libparquet-dev
WORKDIR /src
COPY . /src
RUN mkdir builddir && meson builddir && cd builddir && ninja