mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
25 lines
266 B
Bash
25 lines
266 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
|