init astro landing page template

This commit is contained in:
2026-01-09 14:55:17 -08:00
parent 6b72f72cdb
commit 9e64b495a1
67 changed files with 16125 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:lts AS runtime
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs