fix vulns and add docker shit

This commit is contained in:
usernames122
2025-08-09 02:13:58 +02:00
parent 80ae629b2d
commit cabeb610b1
11 changed files with 638 additions and 118 deletions

11
Dockerfile Executable file
View File

@@ -0,0 +1,11 @@
FROM node:22-alpine
WORKDIR /app
COPY . .
RUN npm install
RUN npx next build
CMD ["npx", "next", "start", "--hostname", "0.0.0.0"]