update clean

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle 2015-06-05 11:55:25 -07:00
parent 17bbb62b99
commit 198f1bcd98
19 changed files with 88 additions and 70 deletions

View File

@ -1,7 +1,7 @@
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>
ENV CONSUL_VERSION 0.5.0
ENV CONSUL_VERSION 0.5.2
ADD https://jesss.s3.amazonaws.com/binaries/consul-alerts /usr/local/bin/consul-alerts
ADD https://jesss.s3.amazonaws.com/binaries/consul/${CONSUL_VERSION}/consul /usr/local/bin/consul

View File

@ -1,5 +1,10 @@
# To use:
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY --device /dev/dri jess/glxgears
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# --device /dev/dri \
# jess/glxgears
#
# Base docker image
FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com>

View File

@ -1,8 +1,6 @@
FROM python:2.7.8
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN pip install -U numpy
# install linear algebra dependencies
RUN apt-get update && apt-get install -y \
gfortran \
@ -10,23 +8,26 @@ RUN apt-get update && apt-get install -y \
liblapack-dev \
libzmq-dev \
--no-install-recommends
RUN pip install -U scipy
RUN pip install -U matplotlib
RUN pip install -U pandas
RUN pip install -U patsy
RUN pip install -U statsmodels
RUN pip install -U scikit-learn
RUN pip install -U ggplot
RUN pip install -U pyzmq
RUN pip install -U jinja2
RUN pip install -U tornado
RUN pip install -U ipython
RUN pip install -U \
numpy \
scipy \
matplotlib \
pandas \
patsy \
statsmodels \
scikit-learn \
ggplot \
pyzmq \
jinja2 \
tornado \
ipython
EXPOSE 8888
ADD notebook.sh /
RUN chmod u+x /notebook.sh && mkdir -p /root/notebooks
RUN chmod u+x /notebook.sh \
&& mkdir -p /root/notebooks
WORKDIR /root/notebooks

View File

@ -6,7 +6,11 @@
# docker build -t keepass2 .
#
# # Run the container and mount your keepass2 database file
# docker run -it -v /home/$USER/DB.kdbx:/root/DB.kdbx -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY keepass2
# docker run -it \
# -v /home/$USER/DB.kdbx:/root/DB.kdbx \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=$DISPLAY \
# keepass2
#
# ISSUES:
# # 'Gtk: cannot open display: :0'
@ -16,8 +20,11 @@
FROM debian:jessie
MAINTAINER Christian Koep <christian.koep@fom-net.de>
ENV DEBIAN_FRONTEND noninteractiv
RUN apt-get update && apt-get install -y \
keepass2 \
xdotool
CMD ["/usr/bin/keepass2"]

View File

@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
ENV HOME /root
WORKDIR $HOME
ENV JOBS 2
ENV JOBS 4
# add install_kernel helper func
RUN { \

View File

@ -1,5 +1,6 @@
# To use:
# Needs X11 socket and dbus mounted
#
# docker run --rm -it \
# -v /etc/machine-id:/etc/machine-id:ro \
# -v /etc/localtime:/etc/localtime:ro \

View File

@ -20,6 +20,7 @@
FROM debian:jessie
MAINTAINER Christian Koep <christian.koep@fom-net.de>
RUN apt-get update && apt-get -y install \
wget \
tar \
@ -30,8 +31,10 @@ RUN apt-get update && apt-get -y install \
libpango-1.0-0 \
libpangocairo-1.0-0 \
libgtk2.0-0
RUN wget -q http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2 -O /usr/src/sublime.tar.bz2 && \
cd /usr/src && \
tar -xjf /usr/src/sublime.tar.bz2 && \
rm -f /usr/src/sublime.tar.bz2
CMD ["/usr/src/sublime_text_3/sublime_text", "-w"]

View File

@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y \
ENV LANG C.UTF-8
ENV HOME /home/user
RUN useradd --create-home --home-dir $HOME user \
&& mkdir -p $HOME/.weechat \
&& chown -R user:user $HOME