Files
crewAI/src/crewai_tools/tools/code_interpreter_tool/Dockerfile
2024-06-20 20:24:26 -03:00

15 lines
277 B
Docker

FROM python:3.11-slim
# Install common utilities
RUN apt-get update && apt-get install -y \
build-essential \
curl \
wget \
software-properties-common
# Clean up
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /workspace