deepvats / docker /entrypoint.sh
misantamaria's picture
Add application file
f58f618
raw
history blame
128 Bytes
#!/bin/bash --login
set -e
echo $ENV_PREFIX
conda activate $ENV_PREFIX
conda list
pip install -e /home/$USER/work
exec "$@"