Skip to content

Commit 7f945b6

Browse files
committed
Change Dockerfiles to use google mirror instead of docker.io
1 parent c0315eb commit 7f945b6

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM alpine:3.3
2-
MAINTAINER Andre Dietisheim <[email protected]>
1+
FROM mirror.gcr.io/library/alpine:3.3
2+
MAINTAINER Andre Dietisheim <[email protected]>

containers/org.eclipse.linuxtools.docker.integration.tests/resources/test-compose/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:2.7
1+
FROM mirror.gcr.io/library/python:2.7
22
ADD . /code
33
WORKDIR /code
44
RUN pip install -r requirements.txt
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM alpine:latest
2-
MAINTAINER Josef Kopriva <[email protected]>
1+
FROM mirror.gcr.io/library/alpine:latest
2+
MAINTAINER Josef Kopriva <[email protected]>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM busybox
1+
FROM mirror.gcr.io/library/busybox
22
ADD run.sh run.sh
33
RUN chmod +x run.sh
4-
CMD ./run.sh
4+
CMD ./run.sh

containers/org.eclipse.linuxtools.docker.ui.tests/projects/CopyDeleteTest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010

11-
FROM bash:latest
11+
FROM mirror.gcr.io/library/bash:latest
1212

1313
# Default is still the alpine ash
1414
SHELL ["/usr/local/bin/bash", "-c"]

containers/org.eclipse.linuxtools.docker.ui.tests/projects/CopyTestEnv/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bash:latest
1+
FROM mirror.gcr.io/library/bash:latest
22

33
# Default is still the alpine ash
44
SHELL ["/usr/local/bin/bash", "-c"]

containers/org.eclipse.linuxtools.docker.ui.tests/projects/foo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fedora:latest
1+
FROM mirror.gcr.io/library/fedora:latest
22
33

44
RUN touch /tmp/foo

0 commit comments

Comments
 (0)