Skip to content

Commit

Permalink
apt -> apt-get
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsimpson committed Jan 14, 2021
1 parent 6d3c1ba commit 35aa048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ssh-add - <<< "$SSH_PRIVATE_KEY"
ssh-keyscan -v $PUBLIC_IP >> ~/.ssh/known_hosts
# -o StrictHostKeyChecking=no is needed since an instance rebuild changes the HostKey
ssh -o StrictHostKeyChecking=no root@$PUBLIC_IP -C "apt-get update"
ssh -o StrictHostKeyChecking=no root@$PUBLIC_IP -C "sudo apt install -y --no-install-recommends python3-virtualenv unzip"
ssh -o StrictHostKeyChecking=no root@$PUBLIC_IP -C "sudo apt-get install -y --no-install-recommends python3-virtualenv unzip"
ssh -o StrictHostKeyChecking=no root@$PUBLIC_IP -C "curl -L -o algo.zip https://github.com/trailofbits/algo/archive/master.zip"
ssh -o StrictHostKeyChecking=no root@$PUBLIC_IP -C "unzip algo.zip"
ssh -o StrictHostKeyChecking=no root@$PUBLIC_IP -C 'cd algo-master; python3 -m virtualenv --python="$(command -v python3)" .env && source .env/bin/activate && python3 -m pip install -U pip virtualenv && python3 -m pip install -r requirements.txt'
Expand Down

0 comments on commit 35aa048

Please sign in to comment.