Dockerfile 544 B

12345678910111213141516171819202122232425262728293031
  1. FROM python:3.5-buster
  2. # Install dependencies. We start with the basic ones require to build protoc
  3. # and the C++ build
  4. RUN apt-get update && apt-get install -y \
  5. autoconf \
  6. autotools-dev \
  7. build-essential \
  8. bzip2 \
  9. ccache \
  10. curl \
  11. gcc \
  12. git \
  13. libc6 \
  14. libc6-dbg \
  15. libc6-dev \
  16. libgtest-dev \
  17. libtool \
  18. make \
  19. parallel \
  20. time \
  21. wget \
  22. && apt-get clean \
  23. && rm -rf /var/lib/apt/lists/*
  24. # Install Python libraries.
  25. RUN python -m pip install --no-cache-dir --upgrade \
  26. pip \
  27. setuptools \
  28. tox \
  29. wheel