File tree Expand file tree Collapse file tree 5 files changed +16
-10
lines changed Expand file tree Collapse file tree 5 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:wheezy
2
2
3
+ RUN apt-get update && apt-get install -y curl procps && rm -rf /var/lib/apt/lists/*
4
+
3
5
ENV RUBY_MAJOR 1.9
4
6
ENV RUBY_VERSION 1.9.3-p547
5
7
6
8
# some of ruby's build scripts are written in ruby
7
9
# we purge this later to make sure our final image uses what we just built
8
10
RUN apt-get update \
9
- && apt-get install -y bison curl ruby procps \
11
+ && apt-get install -y bison ruby \
10
12
&& rm -rf /var/lib/apt/lists/* \
11
13
&& mkdir -p /usr/src/ruby \
12
14
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
@@ -15,7 +17,7 @@ RUN apt-get update \
15
17
&& autoconf \
16
18
&& ./configure --disable-install-doc \
17
19
&& make \
18
- && apt-get purge -y --auto-remove bison ruby procps \
20
+ && apt-get purge -y --auto-remove bison ruby \
19
21
&& make install \
20
22
&& rm -r /usr/src/ruby
21
23
Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:jessie
2
2
3
+ RUN apt-get update && apt-get install -y curl procps && rm -rf /var/lib/apt/lists/*
4
+
3
5
ENV RUBY_MAJOR 2.0
4
- ENV RUBY_VERSION 2.0.0-p481
6
+ ENV RUBY_VERSION 2.0.0-p576
5
7
6
8
# some of ruby's build scripts are written in ruby
7
9
# we purge this later to make sure our final image uses what we just built
8
10
RUN apt-get update \
9
- && apt-get install -y bison curl ruby procps \
11
+ && apt-get install -y bison ruby \
10
12
&& rm -rf /var/lib/apt/lists/* \
11
13
&& mkdir -p /usr/src/ruby \
12
14
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
@@ -15,7 +17,7 @@ RUN apt-get update \
15
17
&& autoconf \
16
18
&& ./configure --disable-install-doc \
17
19
&& make -j"$(nproc)" \
18
- && apt-get purge -y --auto-remove bison ruby procps \
20
+ && apt-get purge -y --auto-remove bison ruby \
19
21
&& make install \
20
22
&& rm -r /usr/src/ruby
21
23
Original file line number Diff line number Diff line change 1
- FROM ruby:2.0.0-p481
1
+ FROM ruby:2.0.0-p576
2
2
3
3
RUN mkdir -p /usr/src/app
4
4
WORKDIR /usr/src/app
Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:jessie
2
2
3
+ RUN apt-get update && apt-get install -y curl procps && rm -rf /var/lib/apt/lists/*
4
+
3
5
ENV RUBY_MAJOR 2.1
4
- ENV RUBY_VERSION 2.1.2
6
+ ENV RUBY_VERSION 2.1.3
5
7
6
8
# some of ruby's build scripts are written in ruby
7
9
# we purge this later to make sure our final image uses what we just built
8
10
RUN apt-get update \
9
- && apt-get install -y bison curl ruby procps \
11
+ && apt-get install -y bison ruby \
10
12
&& rm -rf /var/lib/apt/lists/* \
11
13
&& mkdir -p /usr/src/ruby \
12
14
&& curl -SL "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.bz2" \
@@ -15,7 +17,7 @@ RUN apt-get update \
15
17
&& autoconf \
16
18
&& ./configure --disable-install-doc \
17
19
&& make -j"$(nproc)" \
18
- && apt-get purge -y --auto-remove bison ruby procps \
20
+ && apt-get purge -y --auto-remove bison ruby \
19
21
&& make install \
20
22
&& rm -r /usr/src/ruby
21
23
Original file line number Diff line number Diff line change 1
- FROM ruby:2.1.2
1
+ FROM ruby:2.1.3
2
2
3
3
RUN mkdir -p /usr/src/app
4
4
WORKDIR /usr/src/app
You can’t perform that action at this time.
0 commit comments