From 77ce1b2b11d9aabe6bf41592a9b4b8bd930902e8 Mon Sep 17 00:00:00 2001 From: Bill Date: Thu, 30 Oct 2025 20:36:40 -0400 Subject: [PATCH] fix: correct Dockerfile FROM AS casing Use uppercase AS keyword to match FROM keyword casing, following Docker best practices and eliminating build warning. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c8b2f92..af42ca6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base stage - dependency installation -FROM python:3.10-slim as base +FROM python:3.10-slim AS base WORKDIR /app