Skip to content

Commit

Permalink
update plugin, and base images
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Sep 24, 2016
1 parent e5f430d commit 667474b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build-and-run-locally/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM busybox:latest
FROM alpine:edge
MAINTAINER Tobias Gesellchen <[email protected]>

RUN mkdir -p /opt/example
Expand Down
2 changes: 1 addition & 1 deletion build-push-and-run-remotely/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM busybox:latest
FROM alpine:edge
MAINTAINER Tobias Gesellchen <[email protected]>

RUN mkdir -p /opt/example
Expand Down
2 changes: 1 addition & 1 deletion build-with-dockerignore/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM busybox:latest
FROM alpine:edge
MAINTAINER Tobias Gesellchen <[email protected]>

WORKDIR /build-context
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildscript {
// works with Gradle 2.1+, for the old configuration see http://plugins.gradle.org/plugin/de.gesellix.docker
plugins {
id "com.github.ben-manes.versions" version "0.13.0"
id "de.gesellix.docker" version "2016-09-09T17-53-52"
id "de.gesellix.docker" version "2016-09-25T01-10-11"
}

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion publish/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM busybox:latest
FROM alpine:edge
MAINTAINER Tobias Gesellchen <[email protected]>

RUN mkdir -p /opt/example
Expand Down
2 changes: 1 addition & 1 deletion run-exec-and-copy-locally/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ task rmContainer(type: DockerRmTask) {

task runContainer(type: DockerRunTask) {
dependsOn rmContainer
imageName = "busybox:latest"
imageName = "alpine:edge"
containerName = "exec-example"
containerConfiguration = [Cmd: ["ping", "127.0.0.1"]]
}
Expand Down

0 comments on commit 667474b

Please sign in to comment.