From 82ea9f1a322b1a113d8f4af975128ab2b369bc75 Mon Sep 17 00:00:00 2001 From: "Helmut K. C. Tessarek" Date: Sat, 31 Aug 2024 14:47:35 +0200 Subject: [PATCH] fix(docker): make keywords uppercase (#344) The 'as' keyword should match the case of the 'from' keyword FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/ --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d88c57b..4a2841e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.72.0-alpine3.18 as builder +FROM rust:1.72.0-alpine3.18 AS builder WORKDIR /app RUN apk update RUN apk add --no-cache musl-dev