Skip to content
This repository was archived by the owner on Nov 15, 2017. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Docker/Countly/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
FROM countly/countly-server:16.06

MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

# Add custom Countly configs - these in turn come from k8s volume
ADD ./runit/countly-api.sh /etc/service/countly-api/run
ADD ./runit/countly-dashboard.sh /etc/service/countly-dashboard/run

2 changes: 1 addition & 1 deletion Docker/Wrk/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM williamyeh/wrk:4.0.2

MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

RUN apk add --update curl --no-cache

Expand Down
4 changes: 2 additions & 2 deletions Docker/azure-cli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM azuresdk/azure-cli-python
MAINTAINER "Hippie Hacker <[email protected]>"
LABEL maintainer "Hippie Hacker <[email protected]>"
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
CMD ["azure"]
CMD ["azure"]
8 changes: 4 additions & 4 deletions Docker/boinc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM phusion/baseimage:0.9.19

MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

RUN apt update -y && \
apt install -y boinc-client && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN mkdir -p /var/lib/boinc-client/projects/www.worldcommunitygrid.org && \
mkdir -p /var/lib/boinc-client/slots && \
chown -R boinc:boinc /var/lib/boinc-client
chown -R boinc:boinc /var/lib/boinc-client

ADD runner.sh /var/lib/boinc-client
ADD attach.sh /var/lib/boinc-client
Expand Down
3 changes: 1 addition & 2 deletions Docker/distcc-daemon/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
FROM zilman/kernel
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

RUN apt-get install -y distcc distcc-pump

COPY config /etc/default/distcc
COPY runner.sh /runner.sh

ENTRYPOINT ["/runner.sh"]

3 changes: 1 addition & 2 deletions Docker/distcc-master/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
FROM zilman/kernel
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

RUN apt-get install -y distcc distcc-pump

COPY config /etc/default/distcc
COPY runner.sh /runner.sh

ENTRYPOINT ["/runner.sh"]

3 changes: 1 addition & 2 deletions Docker/distcc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM debian:stable
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

RUN apt-get clean && apt update && apt install -y

Expand All @@ -11,4 +11,3 @@ COPY config /etc/default/distcc
COPY runner.sh /runner.sh

ENTRYPOINT ["/runner.sh"]

2 changes: 1 addition & 1 deletion Docker/echo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM zilman/falcon
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

COPY echo.py /app.py

Expand Down
2 changes: 1 addition & 1 deletion Docker/falcon/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM zilman/gunicorn
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

RUN pip install meinheld falcon

Expand Down
3 changes: 1 addition & 2 deletions Docker/fluentd-kubectl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM fluent/fluentd:latest-onbuild
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"
WORKDIR /home/fluent
ENV PATH /home/fluent/.gem/ruby/2.3.0/bin:$PATH
ENV KUBE_LATEST_VERSION="v1.4.4"
Expand All @@ -20,4 +20,3 @@ RUN apk --no-cache add sudo build-base ruby-dev && \

USER fluent
CMD exec fluentd -c /fluentd/etc/$FLUENTD_CONF -p /fluentd/plugins $FLUENTD_OPT

2 changes: 1 addition & 1 deletion Docker/fluentd-reportstats/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM fluent/fluentd:latest-onbuild
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"
WORKDIR /home/fluent
ENV PATH /home/fluent/.gem/ruby/2.3.0/bin:$PATH

Expand Down
2 changes: 1 addition & 1 deletion Docker/grafana/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM grafana/grafana:3.1.1
FROM grafana/grafana:4.5.2

RUN apt-get update && \
apt-get install -y curl
Expand Down
8 changes: 3 additions & 5 deletions Docker/gunicorn/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
FROM python:2.7
MAINTAINER Eugene Zilman <[email protected]>
LABEL maintainer "Eugene Zilman <[email protected]>"

RUN pip install gunicorn
RUN pip install gunicorn

COPY gunicorn_conf.py /

ENTRYPOINT ["/usr/local/bin/gunicorn", "--config", "/gunicorn_conf.py"]


ENTRYPOINT ["/usr/local/bin/gunicorn", "--config", "/gunicorn_conf.py"]
4 changes: 2 additions & 2 deletions provisioning/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:alpine
MAINTAINER "Denver Williams <[email protected]>"
LABEL maintainer "Denver Williams <[email protected]>"
ENV KUBECTL_VERSION=v1.5.2
ENV HELM_VERSION=v2.4.1
ENV GCLOUD_VERSION=150.0.0
Expand Down Expand Up @@ -39,7 +39,7 @@ tar xvzf helm-${HELM_VERSION}-linux-amd64.tar.gz && \
mv linux-amd64/helm /usr/local/bin && \
rm -rf helm-*gz linux-amd64

# Install Terraform
# Install Terraform
RUN wget https://releases.hashicorp.com/terraform/$TERRAFORM_VERSION/terraform_"${TERRAFORM_VERSION}"_linux_$ARC.zip
RUN unzip terraform*.zip -d /usr/bin

Expand Down