blob: 64823bd3b59ced77f2b0234ac3b7ebbf5d5375db (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
# Sample script to install runsc
wget -q --https-only \
https://storage.googleapis.com/gvisor/releases/nightly/${RUNSC_VERSION}/runsc
chmod +x runsc
sudo mv runsc /usr/local/bin/
|