Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. FROM alpine:latest
  2.  
  3. RUN apk update \
  4. && apk add py-pip asciidoc \
  5. && pip install Pygments \
  6. && apk del py-pip \
  7. && rm -rf /tmp/* /var/cache/apk/* \
  8. && rm -rf /tmp/* /var/cache/apk/* ~/.cache/pip \
  9. && sed -i 's/^\(source-highlighter=\).*/\1pygments/' /etc/asciidoc/asciidoc.conf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement