fix: update Dockerfile and README to replace model extraction with download

This commit is contained in:
David Snelling 2025-08-05 20:39:39 -07:00
parent d3ff38174c
commit b1bc455810
7 changed files with 40 additions and 40 deletions

View file

@ -1,5 +1,5 @@
# Multi-stage Dockerfile for Brainy with embedded models
FROM node:24-alpine AS builder
FROM node:24-slim AS builder
# Set working directory
WORKDIR /app
@ -26,7 +26,7 @@ RUN mkdir -p /app/models && \
fi
# Production stage
FROM node:24-alpine AS production
FROM node:24-slim AS production
# Set working directory
WORKDIR /app