mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00
13 lines
403 B
Docker
13 lines
403 B
Docker
FROM centos:7
|
|
RUN yum install -y epel-release
|
|
RUN yum install -y sqlite-devel libicu-devel gcc gcc-c++ meson
|
|
COPY ci/arrow-centos.repo /etc/yum.repos.d/Apache-Arrow.repo
|
|
RUN yum install -y parquet-devel
|
|
WORKDIR /src
|
|
COPY . /src
|
|
RUN mkdir builddir && meson builddir
|
|
WORKDIR builddir
|
|
RUN meson configure -Db_pgo=generate && ninja-build
|
|
RUN ninja-build test
|
|
#RUN meson configure -Db_pgo=use && ninja-build
|