Create entrypoint.sh (#2)
Browse files- Create entrypoint.sh (56c1a71457b1ae6836f6ca4411283f72e0670b32)
- entrypoint.sh +11 -0
entrypoint.sh
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
echo "entrypoint.sh"
|
| 4 |
+
whoami
|
| 5 |
+
which python
|
| 6 |
+
echo "pythonpath" $PYTHONPATH
|
| 7 |
+
|
| 8 |
+
source /opt/conda/etc/profile.d/conda.sh
|
| 9 |
+
conda activate musev
|
| 10 |
+
which python
|
| 11 |
+
python app.py
|