summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorWilliam Langford <wlangfor@gmail.com>2019-02-20 21:28:10 -0500
committerNico Williams <nico@cryptonector.com>2019-02-26 11:10:38 -0600
commita4756fde3fb059d93259442fd2e469a1831a32c0 (patch)
treeb36cc3963092c35c3c127dcdb5f47c6de1832ad2 /Dockerfile
parent15be4e7915edd56c15769574d5e99e32851b5ceb (diff)
Cleanup leftover references to ruby
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile12
1 files changed, 5 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile
index 4161b978..d35e4ada 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,9 +13,8 @@ RUN apt-get update && \
git \
bison \
flex \
- ruby \
- wget \
- ruby-dev && \
+ python3 \
+ wget && \
wget https://github.com/kkos/oniguruma/archive/v5.9.6.tar.gz -O onig-5.9.6.tar.gz && \
sha512sum onig-5.9.6.tar.gz | grep 6b048d345e148c9da38af7a8df76d4a358eb3d4db91fa7834076e511f526a63544284f212b0d56badbbd33112c8b458a5fff02bfbbda012ecfe478bc436ea679 && \
tar zxvf onig-5.9.6.tar.gz && \
@@ -25,8 +24,8 @@ RUN apt-get update && \
./configure --prefix=/usr/local && \
make && \
make install ) && \
- gem install bundler && \
- (cd /app/docs && bundle install) && \
+ pip3 install pipenv && \
+ (cd /app/docs && pipenv sync) && \
(cd /app && \
autoreconf -i && \
./configure --disable-valgrind --enable-all-static --prefix=/usr/local && \
@@ -43,8 +42,7 @@ RUN apt-get update && \
bison \
git \
flex \
- ruby \
- ruby-dev && \
+ python3 && \
apt-get autoremove -y && \
rm -rf oniguruma-5.9.6 && \
rm -rf /var/lib/apt/lists/* /var/lib/gems