Skip to content

Commit

Permalink
fix(docker): use fully qualified image names
Browse files Browse the repository at this point in the history
Stops Podman from complaining and makes it more obvious that the images
are pulled from Docker hub
  • Loading branch information
PureTryOut committed May 21, 2024
1 parent 4cb578b commit 7cbe941
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-bullseye AS Builder
FROM docker.io/rust:slim-bullseye 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:bullseye-slim as Release
FROM docker.io/debian:bullseye-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 7cbe941

Please sign in to comment.