Added Astro.js guide

This commit is contained in:
2026-04-30 21:16:43 -05:00
parent f4653456f3
commit 17c79eb6bd
4 changed files with 163 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
FROM node:lts-alpine AS build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run build
FROM httpd:2.4 AS runtime
COPY --from=build /app/dist /usr/local/apache2/htdocs/
EXPOSE 80