Skip to content

Commit

Permalink
cleanup files
Browse files Browse the repository at this point in the history
Signed-off-by: Jessica Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jun 7, 2015
1 parent 7df23fb commit eeb78fd
Show file tree
Hide file tree
Showing 52 changed files with 122 additions and 97 deletions.
9 changes: 0 additions & 9 deletions alpine-t/Dockerfile

This file was deleted.

21 changes: 0 additions & 21 deletions alpine-t/README.md

This file was deleted.

3 changes: 2 additions & 1 deletion awscli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN pip install awscli

RUN mkdir -p /root/.aws && /bin/echo -e '[default]\noutput = json\nregion = $AMAZON_REGION\naws_access_key_id = $AMAZON_ACCESS_KEY_ID\naws_secret_access_key = $AMAZON_SECRET_ACCESS_KEY' > /root/.aws/config
RUN mkdir -p /root/.aws \
&& /bin/echo -e '[default]\noutput = json\nregion = $AMAZON_REGION\naws_access_key_id = $AMAZON_ACCESS_KEY_ID\naws_secret_access_key = $AMAZON_SECRET_ACCESS_KEY' > /root/.aws/config

ENTRYPOINT [ "aws" ]
3 changes: 2 additions & 1 deletion cathode/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ RUN apt-get update && apt-get install -y \
qml-module-qtquick-dialogs \
qml-module-qtquick-localstorage \
qml-module-qtquick-window2 \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

RUN git clone --recursive https://github.com/Swordfish90/cool-retro-term.git /src
WORKDIR /src
Expand Down
9 changes: 5 additions & 4 deletions chromium/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ RUN sed -i.bak 's/sid main/sid main contrib non-free/g' /etc/apt/sources.list &&
libpango1.0-0 \
libv4l-0 \
pepperflashplugin-nonfree \
--no-install-recommends && \
mkdir -p /etc/chromium.d/ && \
/bin/echo -e 'export GOOGLE_API_KEY="AIzaSyCkfPOPZXDKNn8hhgu3JrA62wIgC93d44k"\nexport GOOGLE_DEFAULT_CLIENT_ID="811574891467.apps.googleusercontent.com"\nexport GOOGLE_DEFAULT_CLIENT_SECRET="kdloedMFGdGla2P1zacGjAQh"' > /etc/chromium.d/googleapikeys && \
dpkg -i '/src/google-talkplugin_current_amd64.deb'
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /etc/chromium.d/ \
&& /bin/echo -e 'export GOOGLE_API_KEY="AIzaSyCkfPOPZXDKNn8hhgu3JrA62wIgC93d44k"\nexport GOOGLE_DEFAULT_CLIENT_ID="811574891467.apps.googleusercontent.com"\nexport GOOGLE_DEFAULT_CLIENT_SECRET="kdloedMFGdGla2P1zacGjAQh"' > /etc/chromium.d/googleapikeys \
&& dpkg -i '/src/google-talkplugin_current_amd64.deb'

ENTRYPOINT [ "/usr/bin/chromium" ]
CMD [ "--user-data-dir=/data", "--no-sandbox" ]
3 changes: 2 additions & 1 deletion cloudapp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
libcurl3-dev \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# update gems
# and install cloudapp
Expand Down
3 changes: 2 additions & 1 deletion consul-alerts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ ADD https://jesss.s3.amazonaws.com/binaries/curl-unix-socket /usr/local/bin/curl
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
--no-install-recommends \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /etc/consul.d/ \
&& chmod +x /usr/local/bin/consul \
&& chmod +x /usr/local/bin/curl-unix-socket \
Expand Down
3 changes: 2 additions & 1 deletion consul/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ COPY ./dist/ /usr/src/consul
RUN apt-get update && apt-get install -y \
ca-certificates \
curl \
--no-install-recommends \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /etc/consul.d/ \
&& chmod +x /usr/local/bin/consul \
&& chmod +x /usr/local/bin/curl-unix-socket
Expand Down
3 changes: 2 additions & 1 deletion doctor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ MAINTAINER Jessica Frazelle <[email protected]>
# Install emacs
RUN apt-get update && apt-get install -y \
emacs \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# Autorun doctor
CMD ["/usr/bin/emacs", "-f", "doctor"]
3 changes: 2 additions & 1 deletion dunnet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ MAINTAINER Jessica Frazelle <[email protected]>
# Install emacs
RUN apt-get update && apt-get install -y \
emacs \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# Autorun dunnet
CMD ["/usr/bin/emacs", "-batch", "-l", "dunnet"]
6 changes: 4 additions & 2 deletions evince/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
FROM debian:jessie
MAINTAINER Christian Koep <[email protected]>

RUN apt-get -qq update && apt-get install -y --no-install-recommends \
evince
RUN apt-get -qq update && apt-get install -y \
evince \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

CMD ["/usr/bin/evince"]
3 changes: 2 additions & 1 deletion firefox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ RUN sed -i.bak 's/sid main/sid main contrib/g' /etc/apt/sources.list && \
libdbus-glib-1-2 \
libgl1-mesa-dri \
libgl1-mesa-glx \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV FIREFOX_VERSION 38.0.5

Expand Down
1 change: 1 addition & 0 deletions fish/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-key D880C8E4 \
&& apt-get update && apt-get install -y \
fish \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /root/.config/fish/completions

ENTRYPOINT [ "fish" ]
3 changes: 2 additions & 1 deletion geary/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
geary \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "geary" ]
3 changes: 2 additions & 1 deletion gimp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
gimp \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "gimp" ]
3 changes: 2 additions & 1 deletion glxgears/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ MAINTAINER Jessica Frazelle <[email protected]>
# Install all the things
RUN apt-get update && apt-get install -y \
mesa-utils \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV LIBGL_DEBUG verbose

Expand Down
3 changes: 2 additions & 1 deletion gparted/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ RUN apt-get update && apt-get install -y \
dosfstools \
gparted \
libcanberra-gtk-module \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# Autorun gparted
CMD ["/usr/sbin/gparted"]
3 changes: 2 additions & 1 deletion icedove/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
icedove \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "icedove" ]
3 changes: 2 additions & 1 deletion iceweasel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ RUN sed -i.bak 's/sid main/sid main contrib/g' /etc/apt/sources.list && \
iceweasel \
libgl1-mesa-dri \
libgl1-mesa-glx \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

COPY local.conf /etc/fonts/local.conf

Expand Down
12 changes: 6 additions & 6 deletions idonethis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ FROM ruby:latest
MAINTAINER Jessica Frazelle <[email protected]>

# update gems
RUN gem update --system
RUN gem update
RUN gem install syck
RUN gem update --system \
&& gem update \
&& gem install syck

# install idonethis from git
RUN git clone https://github.com/influitive/idonethis.git /idonethis
RUN cd /idonethis; rake build; gem install /idonethis/pkg/idonethis-0.1.0.gem;

COPY .idonethisrc /
COPY main.sh /
COPY .idonethisrc /root/.idonethisrc
COPY main.sh /main.sh

ENTRYPOINT ["/main.sh"]
ENTRYPOINT ["/main.sh"]
3 changes: 2 additions & 1 deletion imagemagick/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
imagemagick \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

CMD [ "imagemagick" ]
7 changes: 4 additions & 3 deletions inkscape/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ RUN apt-get update && apt-get install -y \
software-properties-common

RUN add-apt-repository ppa:inkscape.dev/stable && \
apt-get update && \
apt-get install -y -qq --no-install-recommends inkscape && \
rm -rf /var/lib/apt/lists/*
apt-get update && apt-get install -y \
inkscape \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

VOLUME /workspace
WORKDIR /workspace
Expand Down
3 changes: 2 additions & 1 deletion ipython-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ RUN apt-get update && apt-get install -y \
libopenblas-dev \
liblapack-dev \
libzmq-dev \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

RUN pip install -U \
numpy \
Expand Down
4 changes: 3 additions & 1 deletion keepass2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ ENV DEBIAN_FRONTEND noninteractiv

RUN apt-get update && apt-get install -y \
keepass2 \
xdotool
xdotool \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

CMD ["/usr/bin/keepass2"]
3 changes: 2 additions & 1 deletion kernel-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ RUN apt-get update && apt-get install -y \
kernel-package \
make \
libncurses5-dev \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV HOME /root
WORKDIR $HOME
Expand Down
3 changes: 2 additions & 1 deletion libreoffice/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
libreoffice \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "libreoffice" ]
3 changes: 2 additions & 1 deletion lynx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ MAINTAINER Jessica Frazelle <[email protected]>

RUN apt-get update && apt-get install -y \
lynx \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "lynx" ]
3 changes: 2 additions & 1 deletion mailman/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ RUN apt-get update && apt-get install -y \
mailman \
postfix \
supervisor \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# Lighttpd configuration
ADD lighttpd.conf /etc/lighttpd/lighttpd.conf
Expand Down
3 changes: 2 additions & 1 deletion mdp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ RUN apt-get update && apt-get install -y \
libncursesw5 \
libncursesw5-dev \
make \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

RUN git clone --recursive https://github.com/visit1985/mdp.git /src

Expand Down
11 changes: 6 additions & 5 deletions mutt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
FROM debian:stable
MAINTAINER Jessica Frazelle <[email protected]>

RUN groupadd -g 1000 user \
&& useradd --create-home -d /home/user -g user -u 1000 user

RUN apt-get update && apt-get install -y \
ca-certificates \
git \
mutt-patched
lynx \
mutt-patched \
vim-nox \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

# a browser is necessary!
RUN apt-get update && apt-get install -y lynx
ENV BROWSER lynx

# my preferred editor :) (see also muttrc)
RUN apt-get update && apt-get install -y vim-nox

USER user
ENV HOME /home/user
ENV TERM xterm-256color
Expand Down
3 changes: 2 additions & 1 deletion nerdy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ RUN apt-get update && apt-get install -y \
imagemagick \
jp2a \
python \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV HOME /root
WORKDIR $HOME
Expand Down
3 changes: 2 additions & 1 deletion plex-home-theater/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ RUN apt-get update && apt-get install -y \
apt-get update && \
apt-get install -y \
libcec-dev \
plexhometheater
plexhometheater \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "/usr/bin/plexhometheater.sh" ]
3 changes: 2 additions & 1 deletion rainbowstream/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ RUN apt-get update && apt-get install -y \
libfreetype6 \
libfreetype6-dev \
zlib1g-dev \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

RUN pip install rainbowstream

Expand Down
3 changes: 2 additions & 1 deletion rdesktop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ MAINTAINER Jessica Frazelle <[email protected]>
RUN apt-get update && apt-get install -y \
libgssapi-krb5-2 \
rdesktop \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "rdesktop" ]
3 changes: 2 additions & 1 deletion remmina/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ RUN apt-get update && apt-get install -y \
hicolor-icon-theme \
remmina \
remmina-plugin-rdp \
--no-install-recommends
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENTRYPOINT [ "remmina" ]
Loading

0 comments on commit eeb78fd

Please sign in to comment.