Initial release
Build and Push Docker Image / build (push) Successful in 17s

This commit is contained in:
Stardream
2026-06-16 19:26:32 +10:00
commit e3bf77296c
142 changed files with 5481 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM node:24-slim
WORKDIR /app
ENV NODE_ENV=production
ENV PORT=3000
ENV BANGUMI_VAULT_FILES_DIR=/data/files
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
COPY server ./server
COPY app ./app
RUN mkdir -p /data/files
EXPOSE 3000
CMD ["npm", "start"]