mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-26 17:49:15 +01:00
14 lines
314 B
Bash
14 lines
314 B
Bash
#!/bin/bash
|
|
|
|
# ensure directory mode of /tmp
|
|
chmod 777 /tmp
|
|
|
|
# update
|
|
apt-get update
|
|
|
|
# common deps
|
|
apt-get install -y curl git net-tools iputils-ping ntp ntpdate nginx wget dumb-init cloc unzip build-essential gnupg2 libc6
|
|
|
|
# chromedriver deps
|
|
apt-get install -y libglib2.0-0 libnss3 libx11-6 # chromedriver deps
|