Skip to content

Change Dockerfiles to use google mirror instead of docker.io #489

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM alpine:3.3
MAINTAINER Andre Dietisheim <[email protected]>
FROM mirror.gcr.io/library/alpine:3.3
MAINTAINER Andre Dietisheim <[email protected]>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:2.7
FROM mirror.gcr.io/library/python:2.7
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM alpine:latest
MAINTAINER Josef Kopriva <[email protected]>
FROM mirror.gcr.io/library/alpine:latest
MAINTAINER Josef Kopriva <[email protected]>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM busybox
FROM mirror.gcr.io/library/busybox
ADD run.sh run.sh
RUN chmod +x run.sh
CMD ./run.sh
CMD ./run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@



FROM bash:latest
FROM mirror.gcr.io/library/bash:latest

# Default is still the alpine ash
SHELL ["/usr/local/bin/bash", "-c"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bash:latest
FROM mirror.gcr.io/library/bash:latest

# Default is still the alpine ash
SHELL ["/usr/local/bin/bash", "-c"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:latest
FROM mirror.gcr.io/library/fedora:latest
MAINTAINER [email protected]

RUN touch /tmp/foo
Expand Down