From 8f6d55ee73caa29937bc4773ba1d470cfc0b4746 Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 20 Sep 2025 13:04:02 -0400 Subject: [PATCH] Use fully qualified image name for Rust backend Dockerfile runtime stage --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index f3d1717..ec1fd21 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -24,7 +24,7 @@ COPY . . RUN cargo build --release --bin sharenet-api-postgres # Runtime stage -FROM debian:bookworm-slim +FROM docker.io/debian:bookworm-slim # Install runtime dependencies RUN apt-get update && apt-get install -y \