summaryrefslogtreecommitdiff
path: root/bin/omnibus-setup
blob: 21a36140beb629afab40ad9fee925ade8a93ece3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh

set -e

cd "$(dirname "$0")/.."

apt-get update -q
apt-get install -y --no-install-recommends \
  autoconf \
  automake \
  bison \
  build-essential \
  ca-certificates \
  cmake \
  curl \
  fakeroot \
  gettext \
  git \
  git \
  libdb-dev \
  libffi-dev \
  libgdbm-dev \
  libgdbm6 \
  libncurses5-dev \
  libreadline6-dev \
  libssl-dev \
  libtool \
  libtool-bin \
  libyaml-dev \
  python3 \
  ruby \
  ruby-dev \
  zlib1g-dev
ln -s /usr/bin/python3 /usr/bin/python
gem install bundler
bundle install