将flask改成fastapi

This commit is contained in:
2025-10-13 13:18:03 +08:00
commit 88db2539b0
476 changed files with 739741 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
FROM node:24-bookworm-slim
RUN npm config set registry https://registry.npmmirror.com
# RUN grep -rl 'deb.debian.org' /etc/apt/ | xargs sed -i 's|http[s]*://deb.debian.org|https://mirrors.ustc.edu.cn|g' && \
# apt-get update && \
# apt-get install -y curl gcc make
WORKDIR /app
COPY package.json package-lock.json .
RUN npm install
CMD ["sleep", "infinity"]