From 4d95ca5fbdf60f1d6968cb68a5a2a5d0a42d700b Mon Sep 17 00:00:00 2001 From: dhairya1899 <17itdhairya.parmar@gmail.com> Date: Thu, 15 Aug 2024 01:18:24 +0530 Subject: [PATCH] Dockerfile: fix FromAsCasing warning Some recent versions of Docker require the FromAsCasing keyword to be in uppercase Signed-off-by: dhairya1899 <17itdhairya.parmar@gmail.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index df82d46..91f7206 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use an official Python runtime as the base image -FROM amd64/python:3.9-buster as project_env +FROM amd64/python:3.9-buster AS project_env # Set the working directory in the container WORKDIR /app