Merge pull request #955 from PureTryOut/docker-fully-qualified-image-names

fix(docker): use fully qualified image names
This commit is contained in:
James Barnsley
2024-10-29 06:21:06 +13:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# --- Build Node ---
FROM rust:slim-bookworm AS Builder
FROM docker.io/rust:slim-bookworm 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:bookworm-slim as Release
FROM docker.io/debian:bookworm-slim as Release
# Switch to the root user while we do our changes
USER root

View File

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