From dcabf50ab62c6c91bad45cbe5e7686d6f6c8c44f Mon Sep 17 00:00:00 2001 From: Tpt Date: Mon, 8 Jan 2024 09:18:47 +0100 Subject: [PATCH] Fixes Docker image Issue #723 --- cli/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Dockerfile b/cli/Dockerfile index 82f4bfe8..004f7525 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -19,7 +19,7 @@ RUN if [ "$BUILDARCH" != "$TARGETARCH" ] && [ "$TARGETARCH" = "arm64" ] ; \ cargo build --release --no-default-features --features rustls-webpki ; \ fi -FROM --platform=$TARGETPLATFORM gcr.io/distroless/cc-debian11 +FROM --platform=$TARGETPLATFORM gcr.io/distroless/cc-debian12 COPY --from=builder /oxigraph/target/release/oxigraph /usr/local/bin/oxigraph ENTRYPOINT [ "/usr/local/bin/oxigraph" ] CMD [ "serve", "--location", "/data", "--bind", "0.0.0.0:7878" ]