2021-10-05 11:09:29 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
apt-get update
|
2021-10-15 00:54:24 -04:00
|
|
|
apt-get install -y curl
|
2021-10-21 06:01:03 -04:00
|
|
|
apt-get install -y libc6 libc6-dev libc6-dev-i386
|
2021-10-15 00:54:24 -04:00
|
|
|
|
2022-01-09 17:56:10 -05:00
|
|
|
curl -sL https://deb.nodesource.com/setup_16.x | bash -
|
2021-10-15 00:54:24 -04:00
|
|
|
apt-get install -y nodejs
|
2021-10-05 11:09:29 -04:00
|
|
|
|
|
|
|
PATH=$PATH:~/go/bin
|
|
|
|
|
2021-11-29 04:57:45 -05:00
|
|
|
go install github.com/gobuffalo/packr/v2/packr2@latest
|