Dockerfile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Licensed to the Apache Software Foundation (ASF) under one or more
  2. # contributor license agreements. See the NOTICE file distributed with
  3. # this work for additional information regarding copyright ownership.
  4. # The ASF licenses this file to You under the Apache License, Version 2.0
  5. # (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. # A image for building/testing brpc
  16. FROM ubuntu:20.04
  17. # prepare env
  18. RUN apt-get update && apt-get install -y --no-install-recommends \
  19. curl \
  20. apt-utils \
  21. openssl \
  22. ca-certificates
  23. # install deps
  24. RUN apt-get update && apt-get install -y --no-install-recommends \
  25. git \
  26. g++ \
  27. make \
  28. libssl-dev \
  29. libgflags-dev \
  30. libprotobuf-dev \
  31. libprotoc-dev \
  32. protobuf-compiler \
  33. libleveldb-dev \
  34. libsnappy-dev && \
  35. apt-get clean -y
  36. RUN git clone https://github.com/apache/incubator-brpc.git
  37. RUN cd incubator-brpc && sh config_brpc.sh --headers=/usr/include --libs=/usr/lib && \
  38. make -j "$(nproc)"