Initial commit: ShadowBroker v0.1

This commit is contained in:
anoracleofra-code
2026-03-04 22:44:08 -07:00
commit 8ed321f2ba
130 changed files with 56002 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM node:18-alpine
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm install
# Copy source code
COPY . .
# Expose port
EXPOSE 3000
# Next.js telemetry disable
ENV NEXT_TELEMETRY_DISABLED 1
# Start development server
CMD ["npm", "run", "dev:frontend"]