FROM python:3.11

WORKDIR /griptape

COPY requirements.txt /griptape

RUN pip install -r requirements.txt -U
