From 21158e0bf721431c637366748b0f01c1764de78c Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Fri, 27 Aug 2021 21:17:27 +0200 Subject: [PATCH] Qualify images with docker.io --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8158b10..c9723e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ########################## BUILD IMAGE ########################## # Rust build image to build Autarco Scraper's statically compiled binary -FROM rust:1.45 as builder +FROM docker.io/rust:1.45 as builder # Build the dependencies first RUN USER=root cargo new --bin autarco-scraper @@ -22,7 +22,7 @@ RUN cargo build --release ########################## RUNTIME IMAGE ########################## # Create new stage with a minimal image for the actual runtime image/container -FROM debian:buster-slim +FROM docker.io/debian:buster-slim # Install cURL, Firefox and the Gecko Driver RUN apt-get update && \