summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 0ffe6469fbb510f21fec2b5b0e0bab2da909da0b (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
FROM debian:stable-slim
COPY Gemfile* /root/omnibus/
WORKDIR /root/omnibus
RUN 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 \
  && echo 'done'