diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/s3select/Dockerfile | |
parent | Initial commit. (diff) | |
download | ceph-upstream/18.2.2.tar.xz ceph-upstream/18.2.2.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/s3select/Dockerfile')
-rw-r--r-- | src/s3select/Dockerfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/s3select/Dockerfile b/src/s3select/Dockerfile new file mode 100644 index 000000000..451035207 --- /dev/null +++ b/src/s3select/Dockerfile @@ -0,0 +1,23 @@ +# Each instruction in this file generates a new layer that gets pushed to your local image cache +# Lines preceeded by # are regarded as comments and ignored +# +# +FROM ubuntu:latest +# +LABEL maintainer="gal.salomon@gmail.com" +# +# Update the image to the latest packages, the image will contain arrow-parquet,boost,and s3select(source). +# this version enables to run s3select queries on parquet-file located on local file-system/ + +RUN apt-get update +RUN apt-get install -y -V ca-certificates lsb-release wget +RUN wget https://apache.bintray.com/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-archive-keyring-latest-$(lsb_release --codename --short).deb +RUN apt-get install -y -V ./apache-arrow-archive-keyring-latest-$(lsb_release --codename --short).deb +RUN apt-get update +RUN apt-get install -y -V libarrow-dev +RUN apt-get install -y -V libparquet-dev +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends libboost-all-dev libgtest-dev +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends git cmake g++ make +RUN git clone -b parquet_local_fs_first_phase https://github.com/ceph/s3select +RUN cd /s3select/ && cmake . && make -j4 + |