Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ FROM dannyben/alpine-ruby
ENV PS1 "\n\n>> bashly \W \$ "
WORKDIR /app

# Install pandoc to support manpage generation (`bashly render :mandoc docs`)
RUN apk add --no-cache pandoc-cli

RUN gem install bashly --version 1.1.5

ENTRYPOINT ["bashly"]
2 changes: 1 addition & 1 deletion edge/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM dannyben/alpine-ruby

ENV PS1 "\n\n>> bashly \W \$ "
RUN apk add --no-cache git
RUN apk add --no-cache git pandoc-cli

ARG branch=master

Expand Down