Skip to content

Commit e9e8db2

Browse files
committed
ref(Dockerfiles): use ubuntu-debootstrap:14.04 as base image
1 parent 1d116f0 commit e9e8db2

20 files changed

Lines changed: 32 additions & 29 deletions

File tree

builder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ubuntu:14.04
1+
FROM ubuntu-debootstrap:14.04
22

33
ENV DEBIAN_FRONTEND noninteractive
44

55
# install common packages
6-
RUN apt-get update && apt-get install -y curl
6+
RUN apt-get update && apt-get install -y curl net-tools sudo
77

88
# install etcdctl
99
RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \

builder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A Docker image that builds Docker images, for use in the [Deis](http://deis.io/) open source PaaS.
44

55
This Docker image is based on the official
6-
[ubuntu:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
6+
[ubuntu-debootstrap:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
77

88
Please add any [issues](https://github.com/deis/deis/issues) you find with this software to
99
the [Deis Project](https://github.com/deis/deis).

cache/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ubuntu:14.04
1+
FROM ubuntu-debootstrap:14.04
22

33
ENV DEBIAN_FRONTEND noninteractive
44

55
# install common packages
6-
RUN apt-get update && apt-get install -y curl
6+
RUN apt-get update && apt-get install -y curl net-tools sudo
77

88
# install etcdctl
99
RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \

cache/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A Redis cache server for use in the [Deis](http://deis.io/) open source PaaS.
44

55
This Docker image is based on the official
6-
[ubuntu:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
6+
[ubuntu-debootstrap:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
77

88
Please add any [issues](https://github.com/deis/deis/issues) you find with this software to
99
the [Deis Project](https://github.com/deis/deis).

controller/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ubuntu:14.04
1+
FROM ubuntu-debootstrap:14.04
22

33
ENV DEBIAN_FRONTEND noninteractive
44

55
# install common packages
6-
RUN apt-get update && apt-get install -y curl
6+
RUN apt-get update && apt-get install -y curl net-tools sudo
77

88
# install etcdctl
99
RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \

controller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A RESTful API server for use in the [Deis](http://deis.io) open source PaaS.
44

55

66
This Docker image is based on the official
7-
[ubuntu:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
7+
[ubuntu-debootstrap:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
88

99
Please add any [issues](https://github.com/deis/deis/issues) you find with this software to
1010
the [Deis Project](https://github.com/deis/deis).

database/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM ubuntu:14.04
1+
FROM ubuntu-debootstrap:14.04
22

33
ENV DEBIAN_FRONTEND noninteractive
44

55
# install common packages
6-
RUN apt-get update && apt-get install -y curl
6+
RUN apt-get update && apt-get install -y curl net-tools sudo
77

88
# install etcdctl
99
RUN curl -sSL -o /usr/local/bin/etcdctl https://s3-us-west-2.amazonaws.com/opdemand/etcdctl-v0.4.6 \

database/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A PostgreSQL database for use in the [Deis](http://deis.io) open source PaaS.
44

55
This Docker image is based on the official
6-
[ubuntu:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
6+
[ubuntu-debootstrap:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
77

88
Please add any [issues](https://github.com/deis/deis/issues) you find with this software to
99
the [Deis Project](https://github.com/deis/deis).

deisctl/units/deis-logger-data.service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Description=deis-logger-data
44
[Service]
55
Type=oneshot
66
RemainAfterExit=yes
7-
ExecStartPre=/bin/sh -c "docker history ubuntu:14.04 >/dev/null 2>&1 || docker pull ubuntu:14.04"
8-
ExecStart=/bin/sh -c "docker inspect deis-logger-data >/dev/null 2>&1 || docker run --name deis-logger-data -v /var/log/deis ubuntu:14.04 /bin/true"
7+
ExecStartPre=/bin/sh -c "docker history ubuntu-debootstrap:14.04 >/dev/null 2>&1 || docker pull ubuntu-debootstrap:14.04"
8+
ExecStart=/bin/sh -c "docker inspect deis-logger-data >/dev/null 2>&1 || docker run --name deis-logger-data -v /var/log/deis ubuntu-debootstrap:14.04 /bin/true"
99

1010
[Install]
1111
WantedBy=multi-user.target

logger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A system logger for use in the [Deis](http://deis.io) open source PaaS.
44

55
This Docker image is based on the official
6-
[ubuntu:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
6+
[ubuntu-debootstrap:14.04](https://registry.hub.docker.com/_/ubuntu/) image.
77

88
Please add any [issues](https://github.com/deis/deis/issues) you find with this software to
99
the [Deis Project](https://github.com/deis/deis).

0 commit comments

Comments
 (0)