From d34941cd6dc3b38fab4a48b80456722386da2725 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Mon, 6 Mar 2023 17:46:50 +0100 Subject: [PATCH] Use fully qualified image name in Dockerfile This allows building the image with buildah without extra registry configuration. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f45719c..0fc2b8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1.3 -FROM ubuntu:22.04 +FROM docker.io/library/ubuntu:22.04 ENV DEBIAN_FRONTEND="noninteractive"