From 43a131b97ffdbae89e11a00611a5eb407f913f96 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Wed, 13 Apr 2022 13:50:48 -0500 Subject: [PATCH] docker: Use full URLs for base images podman doesn't automatically use the docker.io registry. --- docker/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Makefile b/docker/Makefile index e614d7f9..a21fe69a 100644 --- a/docker/Makefile +++ b/docker/Makefile @@ -7,8 +7,8 @@ PROTONSDK_VERSION = $(STEAMRT_VERSION)-0-dev # this is just for building toolchain, as we do static builds it should # not have any impact on the end result, but changing it will invalidate # docker caches, so we need something that don't change much -BASE_IMAGE_i686 = i386/ubuntu:18.04 -BASE_IMAGE_x86_64 = ubuntu:18.04 +BASE_IMAGE_i686 = docker.io/i386/ubuntu:18.04 +BASE_IMAGE_x86_64 = docker.io/amd64/ubuntu:18.04 BINUTILS_VERSION = 2.37 GCC_VERSION = 10.3.0