mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-30 18:56:16 +00:00
- .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
31 lines
864 B
YAML
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
|