Sha256: 31484f925d6a0a5611e35a77ba226d450ecff8375d493e571ea6c2d333392c51

Contents?: true

Size: 945 Bytes

Versions: 1

Compression:

Stored size: 945 Bytes

Contents

FROM ubuntu:18.04
MAINTAINER OpenHub <info@openhub.net>

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update
RUN apt-get install -y build-essential software-properties-common locales
RUN locale-gen en_US.UTF-8

RUN apt-add-repository -y ppa:brightbox/ruby-ng
RUN apt-get update
RUN apt-get install -y ruby2.3 ruby2.3-dev

RUN apt-get install -y ragel libxml2-dev libpcre3 libpcre3-dev swig gperf openssh-server expect
RUN apt-get install -y git git-svn subversion cvs mercurial bzr

RUN ssh-keygen -q -t rsa -N '' -f /root/.ssh/id_rsa
RUN cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
RUN echo 'StrictHostKeyChecking no' >> ~/.ssh/config

RUN mkdir -p ~/.bazaar/plugins
RUN cd ~/.bazaar/plugins
RUN bzr branch lp:bzr-xmloutput ~/.bazaar/plugins/xmloutput

RUN ln -s /usr/bin/cvs /usr/bin/cvsnt

RUN gem install posix-spawn -v '~> 0.3'
RUN gem install nokogiri -v '~> 1.8'
RUN gem install rake test-unit byebug

RUN mkdir -p /home/app/ohloh_scm

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ohloh_scm-2.5.1 Dockerfile