Skip to content

Commit f78a706

Browse files
committed
Merge pull request #4580 from mboersma/alpine-32
chore(*): update Docker base image to alpine:3.2
2 parents 1149eb5 + d41f0a4 commit f78a706

26 files changed

Lines changed: 24 additions & 26 deletions

File tree

builder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Builder creates Docker images to be run elsewhere on the Deis platform.
44
Builder itself also runs in a Docker container.
55

66
This Docker image is based on the official
7-
[alpine:3.1](https://registry.hub.docker.com/_/alpine/) image.
7+
[alpine:3.2](https://registry.hub.docker.com/_/alpine/) 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).

builder/rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.1
1+
FROM alpine:3.2
22

33
# install common packages
44
RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/*

controller/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.1
1+
FROM alpine:3.2
22

33
# install common packages
44
RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/*

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-
[alpine:3.1](https://registry.hub.docker.com/_/alpine/) image.
7+
[alpine:3.2](https://registry.hub.docker.com/_/alpine/) 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).

controller/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ paramiko==1.15.2
1414
psycopg2==2.6.1
1515
python-etcd==0.3.2
1616
PyYAML==3.11
17-
setproctitle==1.1.8
1817
static==1.1.1
1918
South==1.0.2
2019
python-ldap==2.4.19

controller/templates/gconf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
workers = multiprocessing.cpu_count() * 2 + 1
1010
except NotImplementedError:
1111
workers = 8
12-
proc_name = 'deis-controller'
1312
timeout = 1200
1413
pidfile = '/tmp/gunicorn.pid'
1514
loglevel = 'info'

database/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:3.1
1+
FROM alpine:3.2
22

33
# install common packages
44
RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/*

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-
[alpine:3.1](https://registry.hub.docker.com/_/alpine/) image.
6+
[alpine:3.2](https://registry.hub.docker.com/_/alpine/) 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-builder.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description=deis-builder
44
[Service]
55
EnvironmentFile=/etc/environment
66
TimeoutStartSec=30m
7-
ExecStartPre=/bin/sh -c "docker inspect deis-builder-data >/dev/null 2>&1 || docker run --name deis-builder-data -v /var/lib/docker alpine:3.1 /bin/true"
7+
ExecStartPre=/bin/sh -c "docker inspect deis-builder-data >/dev/null 2>&1 || docker run --name deis-builder-data -v /var/lib/docker alpine:3.2 /bin/true"
88
ExecStartPre=/bin/sh -c "IMAGE=`/run/deis/bin/get_image /deis/builder` && docker history $IMAGE >/dev/null 2>&1 || docker pull $IMAGE"
99
ExecStartPre=/bin/sh -c "docker inspect deis-builder >/dev/null 2>&1 && docker rm -f deis-builder || true"
1010
ExecStartPre=-/bin/sh -c "/sbin/losetup -f"

deisctl/units/deis-database.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description=deis-database
44
[Service]
55
EnvironmentFile=/etc/environment
66
TimeoutStartSec=20m
7-
ExecStartPre=/bin/sh -c "docker inspect deis-database-data >/dev/null 2>&1 || docker run --name deis-database-data -v /var/lib/postgresql alpine:3.1 /bin/true"
7+
ExecStartPre=/bin/sh -c "docker inspect deis-database-data >/dev/null 2>&1 || docker run --name deis-database-data -v /var/lib/postgresql alpine:3.2 /bin/true"
88
ExecStartPre=/bin/sh -c "IMAGE=`/run/deis/bin/get_image /deis/database` && docker history $IMAGE >/dev/null 2>&1 || docker pull $IMAGE"
99
ExecStartPre=/bin/sh -c "docker inspect deis-database >/dev/null 2>&1 && docker rm -f deis-database >/dev/null 2>&1 || true"
1010
ExecStart=/bin/sh -c "IMAGE=`/run/deis/bin/get_image /deis/database` && docker run --name deis-database --rm --volumes-from=deis-database-data -p 5432:5432 -e EXTERNAL_PORT=5432 -e HOST=$COREOS_PRIVATE_IPV4 $IMAGE"

0 commit comments

Comments
 (0)