fix(docker): use fully qualified image names

Stops Podman from complaining and makes it more obvious that the images
are pulled from Docker hub
This commit is contained in:
Bart Ribbers
2024-05-21 13:34:09 +02:00
parent 4cb578bf1e
commit 7cbe941a56
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# --- Build Node --- # --- 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" LABEL org.opencontainers.image.authors="https://github.com/seppi91"
ARG TARGETPLATFORM ARG TARGETPLATFORM
ARG TARGETARCH ARG TARGETARCH
@ -53,7 +53,7 @@ RUN export CSOUND_LIB_DIR="/usr/lib/$(uname -m)-linux-gnu" \
# --- Release Node --- # --- 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 # Switch to the root user while we do our changes
USER root USER root

View File

@ -1,5 +1,5 @@
# Use Alpine edge for now as some required dependencies are only in the testing repository # 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 # Switch to the root user while we do our changes
USER root USER root