From 7a08775fc516a1334c199e4cd4ae9d7489a5de7e Mon Sep 17 00:00:00 2001 From: ClausTopke <38303743+brnuts@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:25:58 -0300 Subject: [PATCH] Update Dockerfile to avoid warning upper case, so we avoid the following warning when building: 1 warning found (use docker --debug to expand): - FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 4) --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index abc2be04..f3b0da23 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@ # Build image # ============================================================================== -FROM ghcr.io/rust-lang/rust:nightly-bookworm as build +FROM ghcr.io/rust-lang/rust:nightly-bookworm AS build RUN apt-get update && \ apt-get install -y build-essential \