Dockerfile 604 B

123456789101112131415161718192021222324252627282930313233
  1. FROM ubuntu:latest
  2. RUN apt-get update && apt-get install -y gnupg
  3. # Install dependencies. We start with the basic ones require to build protoc
  4. # and the C++ build
  5. RUN apt-get clean && apt-get update && apt-get install -y --force-yes \
  6. autoconf \
  7. autotools-dev \
  8. build-essential \
  9. bzip2 \
  10. ccache \
  11. curl \
  12. gcc \
  13. git \
  14. libc6 \
  15. libc6-dbg \
  16. libc6-dev \
  17. libgtest-dev \
  18. libtool \
  19. make \
  20. parallel \
  21. time \
  22. wget \
  23. && apt-get clean
  24. ##################
  25. # Javascript dependencies.
  26. RUN apt-get install -y \
  27. # -- For javascript and closure compiler -- \
  28. npm \
  29. default-jre