Initial commit

This commit is contained in:
2026-06-24 23:47:55 -07:00
commit d134b480a0
297 changed files with 30726 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM node:24.15.0-alpine3.23
RUN npm i -g npm@11.14.1
WORKDIR /usr/src/web
COPY package*.json ./
RUN npm clean-install
CMD ["npm", "run", "start", "--", "--host", "0.0.0.0"]