暫無描述

post-create.sh 308B

123456789101112
  1. #
  2. # after our initial creation of the devcontainer, we will...
  3. #
  4. # mark workspace dir as safe dir for git (b/c container user != host user)
  5. git config --global --add safe.directory /workspaces/iris-web
  6. # change working dir to source
  7. cd source
  8. # install python dependencies
  9. pip install -r requirements.txt