From c03e86f43b2d0dad20457ceaaf91dc6a1d4842d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 10 Jan 2020 17:15:48 +0100 Subject: [PATCH] Explicitely point to docker.io images This is useful for tools like podman which do not take it for granted that base images come from hub.docker.com. --- Dockerfile | 2 +- tutor/templates/build/android/Dockerfile | 2 +- tutor/templates/build/forum/Dockerfile | 2 +- tutor/templates/build/openedx/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f8aedfe..a228791 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ # Because this image is still experimental, and we are not quite sure if it's going to # be very useful, we do not provide any usage documentation. -FROM python:3.7 +FROM docker.io/python:3.7 # As per https://github.com/docker/compose/issues/3918 COPY --from=library/docker:19.03 /usr/local/bin/docker /usr/bin/docker diff --git a/tutor/templates/build/android/Dockerfile b/tutor/templates/build/android/Dockerfile index c6025e1..76bdd12 100644 --- a/tutor/templates/build/android/Dockerfile +++ b/tutor/templates/build/android/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:18.04 +FROM docker.io/ubuntu:18.04 MAINTAINER Overhang.io RUN apt update && \ diff --git a/tutor/templates/build/forum/Dockerfile b/tutor/templates/build/forum/Dockerfile index c0dba26..2aae2d5 100644 --- a/tutor/templates/build/forum/Dockerfile +++ b/tutor/templates/build/forum/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:18.04 +FROM docker.io/ubuntu:18.04 MAINTAINER Overhang.io RUN mkdir /openedx diff --git a/tutor/templates/build/openedx/Dockerfile b/tutor/templates/build/openedx/Dockerfile index 4a35664..a5dcf73 100644 --- a/tutor/templates/build/openedx/Dockerfile +++ b/tutor/templates/build/openedx/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:16.04 +FROM docker.io/ubuntu:16.04 MAINTAINER Overhang.io ############ common to lms & cms