Fixed workspace volume mount

This commit is contained in:
Morpheus Sandmann
2026-07-15 19:00:59 +01:00
parent 09b17505e8
commit 61898f3359
2 changed files with 30 additions and 25 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
FROM python:3.11-slim
# Install system dependencies including git for version control operations
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* && pip install fastmcp mcp requests playwright markitdown && playwright install chromium --with-deps
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* && pip install fastmcp mcp requests playwright markitdown[all] && playwright install chromium --with-deps
RUN groupadd -g 1000 user && \
useradd -m -u 1000 -g 1000 -s /bin/bash user