blob: 84cf360506fce03faf40c7b61c785612543e9b10 (
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
|
FROM debian:stable-slim
COPY . /root/omnibus
WORKDIR /root/omnibus
RUN apt-get update -q \
&& apt-get install -y --no-install-recommends \
autoconf \
bison \
build-essential \
ca-certificates \
fakeroot \
git \
libdb-dev \
libffi-dev \
libgdbm-dev \
libgdbm6 \
libncurses5-dev \
libreadline6-dev \
libssl-dev \
libyaml-dev \
ruby \
ruby-dev \
zlib1g-dev \
&& gem install bundler \
&& bundle install \
&& omnibus build asdf \
&& echo 'done'
|