]> git.proxmox.com Git - ceph.git/blame - ceph/src/arrow/cpp/examples/minimal_build/system_dependency.dockerfile
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / cpp / examples / minimal_build / system_dependency.dockerfile
CommitLineData
1d09f67e
TL
1# Licensed to the Apache Software Foundation (ASF) under one
2# or more contributor license agreements. See the NOTICE file
3# distributed with this work for additional information
4# regarding copyright ownership. The ASF licenses this file
5# to you under the Apache License, Version 2.0 (the
6# "License"); you may not use this file except in compliance
7# with the License. You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing,
12# software distributed under the License is distributed on an
13# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14# KIND, either express or implied. See the License for the
15# specific language governing permissions and limitations
16# under the License.
17
18FROM ubuntu:focal
19
20ENV DEBIAN_FRONTEND=noninteractive
21
22RUN apt-get update -y -q && \
23 apt-get install -y -q --no-install-recommends \
24 build-essential \
25 cmake \
26 libboost-filesystem-dev \
27 libboost-regex-dev \
28 libboost-system-dev \
29 libbrotli-dev \
30 libbz2-dev \
31 libgflags-dev \
32 liblz4-dev \
33 libprotobuf-dev \
34 libprotoc-dev \
35 libre2-dev \
36 libsnappy-dev \
37 libthrift-dev \
38 libutf8proc-dev \
39 libzstd-dev \
40 pkg-config \
41 protobuf-compiler \
42 rapidjson-dev \
43 zlib1g-dev && \
44 apt-get clean && rm -rf /var/lib/apt/lists*