Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
chore(*): update base to alpine:3.4
Browse files Browse the repository at this point in the history
Updates Docker base images to `alpine:3.4` to benefit from current
code and fixes.

Leaves database intact, since upgrading to a new version of
postgresql isn't a smooth upgrade path.
  • Loading branch information
mboersma committed Aug 10, 2016
1 parent d369fd7 commit 378663f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion controller/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

# install common packages
RUN apk add --no-cache curl bash sudo
Expand Down
1 change: 1 addition & 0 deletions controller/build.sh
Expand Up @@ -17,6 +17,7 @@ apk add --no-cache \
libpq \
openldap \
openldap-dev \
openssl \
postgresql-dev \
python \
python-dev
Expand Down
2 changes: 1 addition & 1 deletion logger/image/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

ENTRYPOINT ["/bin/logger"]
CMD ["--enable-publish"]
Expand Down
2 changes: 1 addition & 1 deletion logspout/image/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

ENV DOCKER_HOST unix:///tmp/docker.sock
ENV ROUTESPATH /tmp
Expand Down
2 changes: 1 addition & 1 deletion publisher/image/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

# install curl in the image so it is possible to get the runtime
# profiling information without any additional package installation.
Expand Down
2 changes: 1 addition & 1 deletion registry/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

# install common packages
RUN apk add --no-cache curl bash sudo
Expand Down
2 changes: 1 addition & 1 deletion router/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

# install common packages
RUN apk add --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/mock-store/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

# install common packages
RUN apk add --no-cache curl bash sudo
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/mock-store/build.sh
Expand Up @@ -17,6 +17,7 @@ apk add --no-cache \
file \
gcc \
git \
openssl \
python-dev

# install etcdctl
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/test-etcd/Dockerfile
@@ -1,4 +1,4 @@
FROM alpine:3.3
FROM alpine:3.4

# install common packages
RUN apk add --no-cache curl tar
Expand Down

0 comments on commit 378663f

Please sign in to comment.