fix: correct Dockerfile FROM AS casing

Use uppercase AS keyword to match FROM keyword casing,
following Docker best practices and eliminating build warning.
This commit is contained in:
2025-10-30 20:36:40 -04:00
parent 2585045be1
commit 77ce1b2b11

View File

@@ -1,5 +1,5 @@
# Base stage - dependency installation
FROM python:3.10-slim as base
FROM python:3.10-slim AS base
WORKDIR /app