File size: 142 Bytes
af9f9d4 | 1 2 3 4 5 | #!/bin/bash
CONDA_ENV=$(head -1 /code/environment.yml | cut -d" " -f2)
eval "$(conda shell.bash hook)"
conda activate $CONDA_ENV
python app.py |
af9f9d4 | 1 2 3 4 5 | #!/bin/bash
CONDA_ENV=$(head -1 /code/environment.yml | cut -d" " -f2)
eval "$(conda shell.bash hook)"
conda activate $CONDA_ENV
python app.py |