From 3c32b67e52475607de203100a7a5afc37265d101 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Mon, 8 Jul 2024 22:26:56 -0700 Subject: [PATCH] Fix Docker Build casing warning --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e303aaf..1b1cb15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 ARG PYTHON_VERSION=3.9.6 -FROM python:${PYTHON_VERSION}-slim as base +FROM python:${PYTHON_VERSION}-slim AS base # Prevents Python from writing pyc files. ENV PYTHONDONTWRITEBYTECODE=1