From db2f038f0a570fe6d7287d257715c8978307ada4 Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Sun, 19 Jan 2025 12:52:28 +0000 Subject: [PATCH] shuffle args around --- servers/containers/conduwuit.Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/servers/containers/conduwuit.Containerfile b/servers/containers/conduwuit.Containerfile index cec02f2f..79769306 100644 --- a/servers/containers/conduwuit.Containerfile +++ b/servers/containers/conduwuit.Containerfile @@ -1,4 +1,7 @@ ARG RUST_VERSION=1.84 +# Match Rustc version as close as possible +# rustc -vV +ARG LLVM_VERSION=19 FROM --platform=$BUILDPLATFORM docker.io/tonistiigi/xx AS xx FROM --platform=$BUILDPLATFORM rust:${RUST_VERSION}-slim-bookworm AS base @@ -7,9 +10,6 @@ FROM --platform=$BUILDPLATFORM rust:${RUST_VERSION}-slim-bookworm AS builder # Prevent deletion of apt cache RUN rm -f /etc/apt/apt.conf.d/docker-clean -# Match Rustc version as close as possible -# rustc -vV -ARG LLVM_VERSION=19 ENV RUSTUP_TOOLCHAIN=${RUST_VERSION} # Install repo tools