Research-Stack/.devcontainer/kube.yaml
Brandon Schneider fd863af6fd Expand devcontainer with full Python stack, add MCP servers (Notion/AWS), strengthen Lean theorems
- .devcontainer/Dockerfile: add PostgreSQL client libs, OpenSSL/libffi headers, gfortran/BLAS for scipy, rclone; install full Python dependency set (boto3, psycopg2-binary, fastapi, uvicorn, notion-client, httpx, pytest, numpy, scipy, etc.) in uv-managed venv; add rclone S3 gateway init script as ENTRYPOINT
- .devcontainer/devcontainer.json: switch from build to pre-built image (localhost/research
2026-05-19 01:52:14 -05:00

31 lines
864 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: research-stack-otom
labels:
app: research-stack
spec:
containers:
- name: dev
image: research-stack-otom:latest
imagePullPolicy: IfNotPresent
command: ["/bin/bash", "-c", "while true; do sleep 3600; done"]
env:
- name: PATH
value: "/home/researcher/.elan/bin:/home/researcher/venv/bin:/home/researcher/.local/bin:${PATH}"
- name: PYTHONUNBUFFERED
value: "1"
- name: XDG_CACHE_HOME
value: "/home/researcher/.cache"
securityContext:
runAsUser: 1000
runAsGroup: 1000
allowPrivilegeEscalation: false
volumeMounts:
- name: workspace
mountPath: /home/researcher/stack
volumes:
- name: workspace
hostPath:
path: /home/allaun/Research Stack
type: Directory