From 5a6a4e77c2d21e69719ce199dc7b2330d1266f79 Mon Sep 17 00:00:00 2001 From: greg Date: Sat, 24 May 2025 08:57:25 +0200 Subject: [PATCH] fix: correct Docker build stage syntax from 'as' to 'AS' --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2062765..90ee635 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ # Dockerfile for Astro webapp with NGINX and API for content management # Stage 1: Build the Astro application -FROM node:20-alpine AS build # Fixed 'as' to 'AS' +# Fixed 'as' to 'AS' in the following line +FROM node:20-alpine AS build WORKDIR /app