#!/bin/bash CONDA_ENV=$(head -1 /code/environment.yml | cut -d" " -f2) eval "$(conda shell.bash hook)" conda activate $CONDA_ENV pip install -r requirements.txt python app.py