Skip to content

Commit

Permalink
Merge pull request #80 from gesellix-docker/explicit-image-tags
Browse files Browse the repository at this point in the history
explicitly use the latest image version
  • Loading branch information
marcuslinke committed Oct 26, 2014
2 parents c35f025 + 96400c2 commit 2fcc174
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/test/resources/netcat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# VERSION 0.3

FROM ubuntu
FROM ubuntu:latest

#install netcat
RUN apt-get install -y netcat
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# VERSION 0.0.1

FROM ubuntu
FROM ubuntu:latest
MAINTAINER Guillaume J. Charmes "guillaume@dotcloud.com"

# make sure the package repository is up to date
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/testAddFile/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:latest

# Copy testrun.sh files into the container

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/testAddFileInSubfolder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:latest

# Copy testrun.sh files into the container

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/testAddFolder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:latest

# Copy testrun.sh files into the container

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/testAddUrl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:latest

# Copy testrun.sh files into the container

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/testENVSubstitution/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:latest

# Copy testrun.sh files into the container

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/testReadFile/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu
FROM ubuntu:latest

# Copy testrun.sh files into the container

Expand Down

0 comments on commit 2fcc174

Please sign in to comment.