File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM cschranz/gpu-jupyter
22
3- RUN pip3 install algorithmia&& \
4- pip3 install algorithmia-api-client
3+ RUN pip install algorithmia&& \
4+ pip install algorithmia-api-client
55
6- # COPY src /usr/algorithmia_ci/src
7- # COPY entrypoint.sh /usr/algorithmia_ci/entrypoint.sh
8- # USER root
9- # RUN chmod +x /usr/algorithmia_ci/entrypoint.sh
10- # ENTRYPOINT ["/usr/algorithmia_ci/entrypoint.sh"]
116COPY src /src
127COPY entrypoint.sh /entrypoint.sh
13- # USER root
8+ USER root
149RUN chmod +x /entrypoint.sh
1510ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33# Install the dependencies of this repo to be able to run the notebook
4- pip3 install -r requirements.txt
4+ pip install -r requirements.txt
55
66# Clone the Algorithmia algorithm repository
77CI_ALGO_DIR=$INPUT_ALGORITHMIA_ALGONAME " _CI"
2525 echo " Could not locate the algorithm directory to copy the contents."
2626fi
2727
28- # python /usr/src/src/action_main.py
2928python /src/action_main.py
3029
3130echo " Switching to the algorithm repo directory to push changes to the Algorithm repo."
You can’t perform that action at this time.
0 commit comments