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
29 lines
516 B
# boilerplate
|
|
FROM kilianciuffolo/node:4.2.2
|
|
MAINTAINER kilian@lukibear.com
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# pkgs
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install --no-install-recommends -y -q \
|
|
ruby \
|
|
ruby-dev \
|
|
rubygems \
|
|
patch \
|
|
ssh \
|
|
unzip \
|
|
zlib1g-dev \
|
|
&& \
|
|
apt-get clean autoclean && \
|
|
apt-get autoremove -y && \
|
|
rm -rf /var/lib/{apt,dpkg,cache,log}/
|
|
|
|
RUN gem install bundle
|
|
|
|
WORKDIR /tinymce-docs
|
|
COPY Gemfile ./
|
|
COPY Gemfile.lock ./
|
|
|
|
RUN bundle install --deployment
|