FROM php:8.2-apache as base RUN apt-get update && apt-get install -y nodejs npm WORKDIR /src COPY . /src RUN npm run dev EXPOSE 80