From 8092992523b7b42d320b2653d3dbac81c57bd782 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 4 Sep 2021 18:25:29 +0530 Subject: Use namespaces when pulling docker base images since this is reqd for podman --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index a7900dbee..e46da8ac9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture -FROM node:14.17.6-buster as builder +FROM docker.io/library/node:14.17.6-buster as builder # TODO: Need to setup a non-root user for security purposes @@ -35,7 +35,7 @@ RUN npm run build # -------------------------------------------------------------------------------------------- -FROM busybox +FROM docker.io/library/busybox # TODO: Need to setup a non-root user for security purposes -- cgit v1.2.3-54-g00ecf