migrate from github

This commit is contained in:
2026-07-15 22:51:56 +08:00
commit a1cccc8068
215 changed files with 38318 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# dev
FROM node:20-alpine AS dev
WORKDIR /app
COPY package*.json ./
RUN npm install
EXPOSE 80
CMD ["sh", "-c", "npm install && npm run dev -- --host --port 80"]