feat: add code-interpreter tool

This commit is contained in:
Eduardo Chiarotti
2024-06-19 20:45:04 -03:00
parent f3bf13e1b1
commit 2b47377a78
3 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# Use an official Ubuntu as a parent image
FROM ubuntu:20.04
# Set environment variables
ENV DEBIAN_FRONTEND=noninteractive
# Install common utilities
RUN apt-get update && apt-get install -y \
build-essential \
curl \
wget \
software-properties-common
# Install Python
RUN apt-get install -y python3 python3-pip
# Clean up
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /workspace