Astro deploy using node
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s

This commit is contained in:
2025-09-24 13:40:06 -07:00
parent 9d625fe1ce
commit 7be83f5167
6 changed files with 165 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:lts AS runtime
WORKDIR /app
COPY hindki .
RUN npm install
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs