Skip to content

Commit 077ada0

Browse files
committed
avoid interactive prompts when updating from an environment.yaml
1 parent b2701d6 commit 077ada0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

context/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ EOF
1010

1111
if [ -e "/home/rapids/environment.yml" ]; then
1212
echo "environment.yml found. Installing packages."
13-
timeout ${CONDA_TIMEOUT:-600} mamba env update -n base -f /home/rapids/environment.yml || exit $?
13+
timeout ${CONDA_TIMEOUT:-600} mamba env update -n base -y -f /home/rapids/environment.yml || exit $?
1414
fi
1515

1616
if [ "$EXTRA_CONDA_PACKAGES" ]; then

0 commit comments

Comments
 (0)