- Add model registry backend that scrapes ollama.com library page - Extract capabilities (vision, tools, thinking, embedding, cloud) from HTML - Store models in SQLite with search, filter by type and capabilities - Add tag sizes fetching from individual model pages - Create Model Browser UI with search, filters, and pagination - Implement streaming model pull with progress bar - Auto-refresh model selector and select new model after pull - Add cloud capability detection (uses different HTML pattern) - Update Go version to 1.24 in Dockerfile 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
678 B
Docker
39 lines
678 B
Docker
FROM golang:1.24-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install build dependencies
|
|
RUN apk add --no-cache gcc musl-dev
|
|
|
|
# Copy go mod files
|
|
COPY go.mod go.sum ./
|
|
RUN go mod download
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Build the application
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o server ./cmd/server
|
|
|
|
# Final stage
|
|
FROM alpine:latest
|
|
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy binary from builder
|
|
COPY --from=builder /app/server .
|
|
|
|
# Create data directory
|
|
RUN mkdir -p /app/data
|
|
|
|
# Expose port
|
|
EXPOSE 8080
|
|
|
|
# Set environment variables
|
|
ENV GIN_MODE=release
|
|
|
|
# Run the server
|
|
CMD ["./server", "-port", "8080", "-db", "/app/data/ollama-webui.db"]
|