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
31 lines
510 B
FROM ubuntu
|
|
MAINTAINER Ephox, is-inbox@ephox.com
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# pkgs
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install --no-install-recommends -y -q \
|
|
ca-certificates \
|
|
curl \
|
|
g++ \
|
|
git \
|
|
make \
|
|
python \
|
|
nodejs \
|
|
npm \
|
|
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
|