X Tutup
Skip to content

Commit 2fcc174

Browse files
committed
Merge pull request #80 from gesellix-docker/explicit-image-tags
explicitly use the latest image version
2 parents c35f025 + 96400c2 commit 2fcc174

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/test/resources/netcat/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# VERSION 0.3
44

5-
FROM ubuntu
5+
FROM ubuntu:latest
66

77
#install netcat
88
RUN apt-get install -y netcat

src/test/resources/nginx/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# VERSION 0.0.1
44

5-
FROM ubuntu
5+
FROM ubuntu:latest
66
MAINTAINER Guillaume J. Charmes "guillaume@dotcloud.com"
77

88
# make sure the package repository is up to date

src/test/resources/testAddFile/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu
1+
FROM ubuntu:latest
22

33
# Copy testrun.sh files into the container
44

src/test/resources/testAddFileInSubfolder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu
1+
FROM ubuntu:latest
22

33
# Copy testrun.sh files into the container
44

src/test/resources/testAddFolder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu
1+
FROM ubuntu:latest
22

33
# Copy testrun.sh files into the container
44

src/test/resources/testAddUrl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu
1+
FROM ubuntu:latest
22

33
# Copy testrun.sh files into the container
44

src/test/resources/testENVSubstitution/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu
1+
FROM ubuntu:latest
22

33
# Copy testrun.sh files into the container
44

src/test/resources/testReadFile/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu
1+
FROM ubuntu:latest
22

33
# Copy testrun.sh files into the container
44

0 commit comments

Comments
 (0)
X Tutup