From 9682c556b835f35c04dce9dba35f484a59631b11 Mon Sep 17 00:00:00 2001 From: Laurent Sorber Date: Fri, 20 Dec 2024 15:04:36 +0100 Subject: [PATCH] fix: fix casing of FROM AS in Dockerfile (#260) --- {{ cookiecutter.__project_name_kebab_case }}/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile b/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile index c775fb9..88aa063 100644 --- a/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile +++ b/{{ cookiecutter.__project_name_kebab_case }}/Dockerfile @@ -32,7 +32,7 @@ WORKDIR /workspaces/{{ cookiecutter.__project_name_kebab_case }}/ -FROM base as poetry +FROM base AS poetry USER root @@ -64,7 +64,7 @@ RUN --mount=type=cache,uid=$UID,gid=$GID,target=/home/user/.cache/pypoetry/ \ -FROM poetry as dev +FROM poetry AS dev # Install development tools: curl, git, gpg, ssh, starship, sudo, vim, and zsh. USER root