Files
stack/zotero/Dockerfile
kert 906d3aa318 Add GPU-accelerated notebook and Zotero desktop services
- notebooks: Marimo notebook server with CUDA/Polars GPU support
  - Uses nvidia/cuda base with uv package manager
  - Includes cudf-polars for GPU-accelerated dataframes
  - GPU benchmark comparing Polars CPU/GPU and Pandas

- zotero: Web-accessible Zotero via Selkies EGL desktop
  - Uses nvidia-egl-desktop with KasmVNC for browser access
  - GPU-accelerated desktop streaming
  - Persistent Zotero data directory

- compose.yml: Docker Compose orchestration for all services

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 00:48:22 -05:00

22 lines
707 B
Docker

# syntax=docker/dockerfile:1
FROM ghcr.io/selkies-project/nvidia-egl-desktop:latest
USER root
# Install Zotero
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
ca-certificates \
&& curl -sL https://raw.githubusercontent.com/retorquere/zotero-deb/master/install.sh | bash \
&& apt-get update && apt-get install -y --no-install-recommends \
zotero \
&& rm -rf /var/lib/apt/lists/*
# Create desktop shortcut for Zotero
RUN mkdir -p /home/ubuntu/Desktop \
&& cp /usr/share/applications/zotero.desktop /home/ubuntu/Desktop/ \
&& chmod +x /home/ubuntu/Desktop/zotero.desktop \
&& chown -R ubuntu:ubuntu /home/ubuntu/Desktop
USER ubuntu