microsoft / lida

Automatic Generation of Visualizations and Infographics using Large Language Models
https://microsoft.github.io/lida/
MIT License
2.57k stars 260 forks source link

Update Dockerfile to Install Additional Dependencies #120

Open wendellr opened 1 month ago

wendellr commented 1 month ago

I encountered an issue when trying to bring up the services using the current Dockerfile. To resolve this, I had to make some modifications to the Dockerfile to install additional dependencies. Below are the changes I made:

# Install requirements
RUN pip install --upgrade pip
RUN apt-get update &&\
    apt-get -y install libgdal-dev &&\
    apt-get -y install g++

These additions ensure that the necessary libraries and tools are available during the build process.

Actual Result: Without the above changes, the build process fails due to missing dependencies.

Please review and merge this change to avoid build issues in the future. If there are any questions or further adjustments needed, feel free to reach out.

Thank you!