Qualify images with docker.io

This commit is contained in:
Paul van Tilburg 2021-08-27 21:17:27 +02:00
parent 0e555ce539
commit 21158e0bf7
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 2 additions and 2 deletions

View File

@ -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 && \