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.

29 lines
516 B

  1. # boilerplate
  2. FROM kilianciuffolo/node:4.2.2
  3. MAINTAINER kilian@lukibear.com
  4. ENV DEBIAN_FRONTEND noninteractive
  5. # pkgs
  6. RUN \
  7. apt-get update && \
  8. apt-get install --no-install-recommends -y -q \
  9. ruby \
  10. ruby-dev \
  11. rubygems \
  12. patch \
  13. ssh \
  14. unzip \
  15. zlib1g-dev \
  16. && \
  17. apt-get clean autoclean && \
  18. apt-get autoremove -y && \
  19. rm -rf /var/lib/{apt,dpkg,cache,log}/
  20. RUN gem install bundle
  21. WORKDIR /tinymce-docs
  22. COPY Gemfile ./
  23. COPY Gemfile.lock ./
  24. RUN bundle install --deployment