This commit is contained in:
sky22333
2026-04-21 20:32:39 +08:00
parent 106d6ec8f7
commit 3c0a7248ae
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
web/dist/
web/node_modules/

View File

@@ -1,4 +1,4 @@
FROM node:20-alpine AS frontend
FROM node:22-alpine AS frontend
WORKDIR /app
@@ -7,7 +7,7 @@ RUN npm install -g pnpm
COPY ./web /app
RUN pnpm install && pnpm run build
FROM python:3.11-alpine
FROM python:3.12-alpine
WORKDIR /app