hindki/Dockerfile
ryan 7be83f5167
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
Astro deploy using node
2025-09-24 13:40:06 -07:00

13 lines
165 B
Docker

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