From 7cbe941a56da907b5f31de97da96bbc77f005192 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Tue, 21 May 2024 13:34:09 +0200 Subject: [PATCH] fix(docker): use fully qualified image names Stops Podman from complaining and makes it more obvious that the images are pulled from Docker hub --- Dockerfile | 4 ++-- Dockerfile.alpine | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4fa4c5e..b0cb3861 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # --- Build Node --- -FROM rust:slim-bullseye AS Builder +FROM docker.io/rust:slim-bullseye AS Builder LABEL org.opencontainers.image.authors="https://github.com/seppi91" ARG TARGETPLATFORM ARG TARGETARCH @@ -53,7 +53,7 @@ RUN export CSOUND_LIB_DIR="/usr/lib/$(uname -m)-linux-gnu" \ # --- Release Node --- -FROM debian:bullseye-slim as Release +FROM docker.io/debian:bullseye-slim as Release # Switch to the root user while we do our changes USER root diff --git a/Dockerfile.alpine b/Dockerfile.alpine index bc1db6dd..510e8e46 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,5 +1,5 @@ # Use Alpine edge for now as some required dependencies are only in the testing repository -FROM alpine:edge +FROM docker.io/alpine:edge # Switch to the root user while we do our changes USER root