파일 업로드에 5분 이상 걸리는 경우 408 오류가 발생하던 버그 수정

This commit is contained in:
static
2025-01-15 02:53:14 +09:00
parent f4b9f87087
commit ed4da7b1df

View File

@@ -13,6 +13,8 @@ COPY . .
RUN pnpm install --offline RUN pnpm install --offline
RUN pnpm build RUN pnpm build
RUN sed -i "s/http\.createServer()/http.createServer({ requestTimeout: 0 })/g" ./build/index.js
# Deploy Stage # Deploy Stage
FROM base FROM base
RUN pnpm fetch --prod RUN pnpm fetch --prod