summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2020-03-12 13:45:54 -0500
committerMonty Taylor <mordred@inaugust.com>2020-03-12 13:46:31 -0500
commitd606ac51516dd8f28ec213f586859c9231eb7c55 (patch)
treef01832d05536e81518b1b36adcd95d6fd1480b5b /Dockerfile
parent611f1867b670d3c7b844de88dac4ac9c82b4ff97 (diff)
downloadzuul-d606ac51516dd8f28ec213f586859c9231eb7c55.tar.gz
Be explicit about source of base images
podman build can't build this Dockerfile if we use unprefixed images. Change-Id: I6f3c21fe38bf446b22dbf09e6ceadb98d0f29212
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index a1d463634..225e3c9c9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM opendevorg/python-builder as builder
+FROM docker.io/opendevorg/python-builder as builder
# Optional location of Zuul API endpoint.
ARG REACT_APP_ZUUL_API
@@ -39,7 +39,7 @@ RUN mkdir /tmp/openshift-install \
&& echo $OPENSHIFT_SHA /tmp/openshift-install/openshift-client.tgz | sha256sum --check \
&& tar xvfz openshift-client.tgz --strip-components=1 -C /tmp/openshift-install
-FROM opendevorg/python-base as zuul
+FROM docker.io/opendevorg/python-base as zuul
COPY --from=builder /output/ /output
RUN echo "deb http://ftp.debian.org/debian stretch-backports main" >> /etc/apt/sources.list \