Problem
The Dockerfile attempts to install DoMINO packages from a non-existing requirements.txt file, which causes the Docker build process to fail.
File: Dockerfile
Lines: 38-39
# Install DoMINO packages
RUN pip3 install --user -r /workspace/python/jupyter_notebook/DoMINO/requirements.txt
The file /workspace/python/jupyter_notebook/DoMINO/requirements.txt does not exist in the repository.
Steps to Reproduce
- Clone the repository:
git clone https://github.com/openhackathons-org/End-to-End-AI-for-Science.git
- Navigate to the repository root
- Run the Docker build command as documented:
sudo docker build -t openhackathons:ai-for-science .