mirror of
https://github.com/ruvnet/RuView
synced 2026-08-01 19:01:42 +00:00
feat: vendor midstream and sublinear-time-solver libraries
Add ruvnet/midstream (AIMDS real-time inference) and ruvnet/sublinear-time-solver (sublinear optimization algorithms) as vendored dependencies under vendor/. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy package files
|
||||
COPY package*.json ./
|
||||
|
||||
# Install dependencies
|
||||
RUN npm install
|
||||
|
||||
# Copy all benchmark files
|
||||
COPY . .
|
||||
|
||||
# Create results directory
|
||||
RUN mkdir -p results
|
||||
|
||||
# Set entrypoint
|
||||
ENTRYPOINT ["npm", "run"]
|
||||
|
||||
# Default command
|
||||
CMD ["benchmark:all"]
|
||||
Reference in New Issue
Block a user