Sha256: c36dce61840a94cdb44ed76155fcb946482e07f7c3b8e94bc7378a2fa172bcf0

Contents?: true

Size: 584 Bytes

Versions: 4

Compression:

Stored size: 584 Bytes

Contents

FROM ruby:2.3

WORKDIR /tmp

RUN apt-get update
RUN apt-get install -y vim

RUN apt-get install -y python3-dev libzmq3-dev python3-pip
RUN pip3 install 'ipython[notebook]'

RUN apt-get install -y libtool-bin uuid-dev
ADD Gemfile /tmp
ADD daru_plotting_plotly.gemspec /tmp
RUN mkdir -p /tmp/lib/daru_plotting_plotly
ADD lib/daru_plotting_plotly/version.rb /tmp/lib/daru_plotting_plotly
RUN bundle install
RUN find /usr/local/bundle/gems/daru-0.1.4.1/lib/daru/ -name "*.rb" | xargs sed -i -e "s/ArguementError/ArgumentError/g"

WORKDIR /root
EXPOSE 8888
CMD iruby notebook --ip 0.0.0.0

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
daru_plotly-0.1.2 Dockerfile
daru-plotly-0.2.0 Dockerfile
daru_plotly-0.1.1 Dockerfile
daru_plotly-0.1.0 Dockerfile