Skip to content

Commit

Permalink
add ruby + rake to the container (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
johrstrom authored Dec 20, 2021
1 parent 8d70358 commit 0c42ec2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ RUN apk upgrade --update \
make \
openjdk8-jre \
ttf-dejavu \
graphviz
graphviz \
ruby

# Install PlantUML
RUN apk add --no-cache --virtual .ssl-deps \
Expand All @@ -31,6 +32,10 @@ RUN python3 -m pip install wheel \
&& python3 -m pip install -r /tmp/requirements.txt \
&& rm -rf /tmp/requirements.txt

# Add ruby gems we need to build
RUN gem install \
rdoc rake --no-document

# Stop Java from writing files in documentation source
ENV _JAVA_OPTIONS -Duser.home=/tmp

Expand Down

0 comments on commit 0c42ec2

Please sign in to comment.