Skip to content

Commit

Permalink
Merge pull request #955 from PureTryOut/docker-fully-qualified-image-…
Browse files Browse the repository at this point in the history
…names

fix(docker): use fully qualified image names
  • Loading branch information
jaedb authored Oct 28, 2024
2 parents 67adde2 + 5b722f4 commit 65eaf15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 65eaf15

Please sign in to comment.