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.
24 lines
437 B
24 lines
437 B
# boilerplate
|
|
FROM ephox/node:4.2.2
|
|
MAINTAINER ephoxServices, ops@textbox.io
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# pkgs
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install --no-install-recommends -y -q \
|
|
awscli \
|
|
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
|