mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 22:50:17 +00:00
09af53d6cb
- Updated styles in directory.html for improved readability and aesthetics, including color adjustments and hover effects. - Enhanced directory item display with better spacing and tracking for text elements. - Improved loading animations and transitions for a smoother user experience. - Refactored mindmap.html to implement an Obsidian-style theme with new CSS variables for consistent styling. - Added control and search panels to the mindmap for better user interaction. - Implemented a class-based structure for mindmap functionality, improving code organization and maintainability. - Enhanced node and link rendering in the mindmap with dynamic styling based on node types. - Added tooltip functionality for nodes in the mindmap to provide contextual information. - Improved responsiveness and accessibility of both templates.
17 lines
256 B
Docker
17 lines
256 B
Docker
FROM python:3.12.4-bookworm AS builder
|
|
|
|
ENV PYTHONUNBUFFERED=1 \
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
WORKDIR /app
|
|
|
|
RUN python -m pip install uv
|
|
RUN uv venv .venv
|
|
COPY pyproject.toml ./
|
|
|
|
RUN uv pip install .
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
CMD ["uv", "run", "engine.py"]
|