fix: correct Docker build stage syntax from 'as' to 'AS'

This commit is contained in:
greg 2025-05-24 08:57:25 +02:00
parent a4bada5bc4
commit 5a6a4e77c2

View File

@ -1,6 +1,7 @@
# Dockerfile for Astro webapp with NGINX and API for content management # Dockerfile for Astro webapp with NGINX and API for content management
# Stage 1: Build the Astro application # 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 WORKDIR /app