- Updated python_coding_microproject.csv to use NVIDIA NIM Kimi K2 - Updated kali_linux_shell_simulator.csv to use NVIDIA NIM Kimi K2 - Made more general-purpose (flexible targets, expanded tools) - Added nemotron-mini-agent.csv for fast local inference via Ollama - Added nemotron-agent.csv for advanced reasoning via Ollama - Added wiki page: Projects for NVIDIA NIMs and Nemotron
35 lines
1.2 KiB
Docker
35 lines
1.2 KiB
Docker
# Development Dockerfile for Control Panel Frontend
|
|
# This is separate from production Dockerfile
|
|
|
|
FROM node:18-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies for building native modules
|
|
RUN apk add --no-cache python3 make g++ git
|
|
|
|
# Copy package files from the app
|
|
COPY package.json ./
|
|
|
|
# Remove problematic Radix UI packages temporarily
|
|
RUN sed -i '/"@radix-ui\/react-badge":/d; /"@radix-ui\/react-button":/d; /"@radix-ui\/react-card":/d; /"@radix-ui\/react-form":/d; /"@radix-ui\/react-input":/d; /"@radix-ui\/react-table":/d' package.json
|
|
|
|
# Remove workspace dependencies temporarily for install
|
|
RUN sed -i '/"@gt2\/types":/d; /"@gt2\/utils":/d' package.json
|
|
|
|
# Install dependencies (using npm install since we don't have lock files)
|
|
RUN npm install
|
|
|
|
# Copy application code
|
|
COPY . .
|
|
|
|
# Create minimal workspace packages
|
|
RUN mkdir -p node_modules/@gt2/types node_modules/@gt2/utils
|
|
RUN echo "export const GT2_VERSION = '1.0.0-dev';" > node_modules/@gt2/types/index.js
|
|
RUN echo "export const formatDate = (d) => new Date(d).toLocaleDateString();" > node_modules/@gt2/utils/index.js
|
|
|
|
# Expose port
|
|
EXPOSE 3000
|
|
|
|
# Development command (will be overridden by docker-compose)
|
|
CMD ["npm", "run", "dev"] |