You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
510 B

10 years ago
  1. FROM ubuntu
  2. MAINTAINER Ephox, is-inbox@ephox.com
  3. ENV DEBIAN_FRONTEND noninteractive
  4. # pkgs
  5. RUN \
  6. apt-get update && \
  7. apt-get install --no-install-recommends -y -q \
  8. ca-certificates \
  9. curl \
  10. g++ \
  11. git \
  12. make \
  13. python \
  14. nodejs \
  15. npm \
  16. awscli \
  17. ruby \
  18. ruby-dev \
  19. rubygems \
  20. patch \
  21. ssh \
  22. unzip \
  23. zlib1g-dev \
  24. && \
  25. apt-get clean autoclean && \
  26. apt-get autoremove -y && \
  27. rm -rf /var/lib/{apt,dpkg,cache,log}/
  28. RUN gem install bundle