Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile to Install Additional Dependencies #120

Open
wendellr opened this issue May 31, 2024 · 0 comments
Open

Update Dockerfile to Install Additional Dependencies #120

wendellr opened this issue May 31, 2024 · 0 comments

Comments

@wendellr
Copy link

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant