From e941a658460eb2edd265d6014256edc8527d3389 Mon Sep 17 00:00:00 2001 From: Christian Geie Date: Tue, 10 Sep 2024 10:23:01 +0200 Subject: [PATCH] fixing 'as' and 'FROM' keywords' casing --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c4ee2af2..18bde8a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM python:alpine3.20 as base +FROM python:alpine3.20 AS base -FROM base as builder +FROM base AS builder WORKDIR /app RUN python -m venv .venv && .venv/bin/pip install --no-cache-dir -U pip setuptools COPY src/ /app/