Skip to content

Commit acb3b9d

Browse files
committed
style(Dockerfiles): remove unnecessary MAINTAINER statements
1 parent 70e00aa commit acb3b9d

4 files changed

Lines changed: 10 additions & 19 deletions

File tree

builder/image/slugbuilder/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
FROM progrium/cedarish:latest
2-
MAINTAINER OpDemand <info@opdemand.com>
32

43
RUN mkdir /app
54
RUN addgroup --quiet --gid 2000 slug && \
@@ -13,4 +12,3 @@ RUN /tmp/builder/install-buildpacks
1312
ENTRYPOINT ["/tmp/builder/build.sh"]
1413

1514
ENV DEIS_RELEASE 1.6.0-dev
16-

builder/image/slugrunner/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
FROM progrium/cedarish:latest
2-
MAINTAINER OpDemand <info@opdemand.com>
32

43
RUN mkdir /app
54
RUN addgroup --quiet --gid 2000 slug && \
@@ -19,4 +18,3 @@ ENV HOME /app
1918
ENTRYPOINT ["/runner/init"]
2019

2120
ENV DEIS_RELEASE 1.6.0-dev
22-

docs/using_deis/using-dockerfiles.rst

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,41 +56,38 @@ Use ``git push deis master`` to deploy your application.
5656
Uploading context
5757
Step 0 : FROM deis/base:latest
5858
---> 60024338bc63
59-
Step 1 : MAINTAINER OpDemand <info@opdemand.com>
60-
---> Using cache
61-
---> 2af5ad7f28d6
62-
Step 2 : RUN wget -O /tmp/go1.2.1.linux-amd64.tar.gz -q https://go.googlecode.com/files/go1.2.1.linux-amd64.tar.gz
59+
Step 1 : RUN wget -O /tmp/go1.2.1.linux-amd64.tar.gz -q https://go.googlecode.com/files/go1.2.1.linux-amd64.tar.gz
6360
---> Using cache
6461
---> cf9ef8c5caa7
65-
Step 3 : RUN tar -C /usr/local -xzf /tmp/go1.2.1.linux-amd64.tar.gz
62+
Step 2 : RUN tar -C /usr/local -xzf /tmp/go1.2.1.linux-amd64.tar.gz
6663
---> Using cache
6764
---> 515b1faf3bd8
68-
Step 4 : RUN mkdir -p /go
65+
Step 3 : RUN mkdir -p /go
6966
---> Using cache
7067
---> ebf4927a00e9
71-
Step 5 : ENV GOPATH /go
68+
Step 4 : ENV GOPATH /go
7269
---> Using cache
7370
---> c6a276eded37
74-
Step 6 : ENV PATH /usr/local/go/bin:/go/bin:$PATH
71+
Step 5 : ENV PATH /usr/local/go/bin:/go/bin:$PATH
7572
---> Using cache
7673
---> 2ba6f6c9f108
77-
Step 7 : ADD . /go/src/github.com/deis/helloworld
74+
Step 6 : ADD . /go/src/github.com/deis/helloworld
7875
---> 94ab7f4b977b
7976
Removing intermediate container 171b7d9fdb34
80-
Step 8 : RUN cd /go/src/github.com/deis/helloworld && go install -v .
77+
Step 7 : RUN cd /go/src/github.com/deis/helloworld && go install -v .
8178
---> Running in 0c8fbb2d2812
8279
github.com/deis/helloworld
8380
---> 13b5af931393
8481
Removing intermediate container 0c8fbb2d2812
85-
Step 9 : ENV PORT 80
82+
Step 8 : ENV PORT 80
8683
---> Running in 9b07da36a272
8784
---> 2dce83167874
8885
Removing intermediate container 9b07da36a272
89-
Step 10 : CMD ["/go/bin/helloworld"]
86+
Step 9 : CMD ["/go/bin/helloworld"]
9087
---> Running in f7b215199940
9188
---> b1e55ce5195a
9289
Removing intermediate container f7b215199940
93-
Step 11 : EXPOSE 80
90+
Step 10 : EXPOSE 80
9491
---> Running in 7eb8ec45dcb0
9592
---> ea1a8cc93ca3
9693
Removing intermediate container 7eb8ec45dcb0

logspout/image/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
FROM busybox
2-
MAINTAINER OpDemand <info@opdemand.com>
32

43
ENV DOCKER_HOST unix:///tmp/docker.sock
54
ENV ROUTESPATH /tmp
@@ -8,4 +7,3 @@ CMD ["/bin/logspout"]
87
ADD logspout /bin/logspout
98

109
ENV DEIS_RELEASE 1.6.0-dev
11-

0 commit comments

Comments
 (0)