sudo apt-get update before installing socat

Without this I was getting:

```sh
@worker-0:~$ sudo apt-get -y install socat
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package socat
```
This commit is contained in:
Yonatan Kogan
2018-05-12 15:27:21 -05:00
committed by GitHub
parent 4f5cecb5ed
commit fce27455aa

View File

@@ -15,6 +15,7 @@ gcloud compute ssh worker-0
Install the OS dependencies:
```
sudo apt-get update
sudo apt-get -y install socat
```