1
0

chore: update deps, update hero section text

This commit is contained in:
2025-12-04 13:36:27 +01:00
parent 1361095a76
commit 8e736906c1
7 changed files with 2148 additions and 1027 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"]