Fix Docker Build casing warning

This commit is contained in:
Jack Jackson 2024-07-08 22:26:56 -07:00
parent 9c4dc50587
commit 3c32b67e52

View File

@ -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