aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorgoogle-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>2026-02-18 05:03:24 +0000
committergoogle-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>2026-02-18 05:03:24 +0000
commitbac73556c98fb94d5c790c211b7e535f878ca85a (patch)
tree269cf49584a5f54daad083398a616aba724ed7b2 /Dockerfile
parent519e1baed7b85bba88ef5a111f02602b932cff8b (diff)
downloadneko-bac73556c98fb94d5c790c211b7e535f878ca85a.tar.gz
neko-bac73556c98fb94d5c790c211b7e535f878ca85a.tar.bz2
neko-bac73556c98fb94d5c790c211b7e535f878ca85a.zip
Fix unbounded memory usage in crawler (DoS)
Co-authored-by: adammathes <868470+adammathes@users.noreply.github.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 920c220..b423373 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,9 @@
# Stage 1: Frontend Build
FROM node:20-slim AS frontend-builder
WORKDIR /app/frontend
-COPY frontend-vanilla/package*.json ./
+COPY frontend/package*.json ./
RUN npm install
-COPY frontend-vanilla/ ./
+COPY frontend/ ./
RUN npm run build
# Stage 2: Backend Build