mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
* feat: Add Code Interpreter Plugin Adds a Simple Code Interpreter Plugin. ## Features: - Runs code using local Python Environment ## Issues - Code execution is not sandboxed. * Add Docker Sandbox for Python Server
11 lines
No EOL
161 B
Docker
11 lines
No EOL
161 B
Docker
FROM python:3.9
|
|
|
|
WORKDIR /app
|
|
|
|
COPY server.py .
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
RUN rm requirements.txt
|
|
|
|
CMD ["python", "server.py"] |