Skip to content

Commit 57d3762

Browse files
committed
fixed docker file. had to remove pygments
1 parent 6e0d0fb commit 57d3762

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

alpine/Dockerfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,21 @@ ENV LC_CTYPE en_US.UTF-8
55

66
RUN addgroup -S dtcgroup && adduser -S dtcuser -G dtcgroup
77

8+
RUN apk update && apk add --no-cache build-base
89

910
RUN echo "add needed tools" && \
1011
apk add --no-cache curl wget zip unzip git bash \
1112
git \
1213
graphviz \
1314
python \
1415
ruby \
16+
ruby-dev \
1517
py-pygments \
1618
libc6-compat \
17-
ttf-dejavu && \
18-
gem install rdoc --no-document && \
19-
gem install pygments.rb
19+
ttf-dejavu
20+
RUN gem install --no-ri --no-rdoc rdoc --no-document
21+
#RUN gem install --no-ri --no-rdoc pygments.rb
22+
RUN apk del ruby-dev
2023

2124
# Add pandoc
2225
# https://github.com/advancedtelematic/dockerfiles/blob/master/doctools/Dockerfile

0 commit comments

Comments
 (0)