containers
containers copied to clipboard
Set PYTHONPATH in Dockerfile not working
If I set PYTHONPATH ins dockerfile like below, its not getting reflected in the container
ENV PYTHONPATH="$PYTHONPATH:/path/to/libraries/"
Hi,
Made it work for the databricksruntime/python image with:
ENV PATH="/databricks/conda/envs/dcs-minimal/bin:${PATH}"
Hope this helps
@dineshvelmuruga PYTHONPATH may be overwritten. If you want to install python libraries, can you take a look at our virtualenv or conda docker images?