ovpn-admin/install-deps.sh

14 lines
260 B
Bash
Raw Normal View History

2021-10-05 18:09:29 +03:00
#!/usr/bin/env bash
apt-get update
apt-get install -y curl
apt-get install -y libc6 libc6-dev libc6-dev-i386
2021-10-15 08:05:30 +03:00
curl -sL https://deb.nodesource.com/setup_14.x | bash -
apt-get install -y nodejs
2021-10-05 18:09:29 +03:00
PATH=$PATH:~/go/bin
2021-11-23 08:55:59 +01:00
go get -u github.com/gobuffalo/packr/packr2
2021-10-05 18:09:29 +03:00