## Building audiowave binary for Lambda

### Build image
`docker build . -t wavecontainer`

### Run the contiainer and copy the binary from to local filesystem
```
id=$(docker create wavecontainer)
docker cp $id:/audiowaveform/build/audiowaveform . 
docker rm -v $id 
docker rmi -f /wavecontainer
```