diff --git a/docker/Dockerfile b/docker/Dockerfile index 2331d2ac..20afe3e0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -34,10 +34,10 @@ WORKDIR /app/arcade RUN python -m build # Build the project and install the wheel with extras -RUN poetry export --with fastapi,dev,evals --output requirements.txt +RUN poetry export --extras "fastapi evals" --output requirements.txt -# This doesnt install the optional packages for some reason -RUN python -m pip install dist/arcade_ai-0.1.0-py3-none-any.whl[fastapi,dev,evals] uvicorn +# Install the wheel with extras +RUN python -m pip install dist/arcade_ai-0.1.0-py3-none-any.whl[fastapi,evals] uvicorn RUN python -m pip install -r requirements.txt WORKDIR /app/toolkits