Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Asciidoctor upgraded to 1.5.6.1 #47

Merged
merged 3 commits into from
Oct 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ FROM alpine:3.6

LABEL MAINTAINERS="Guillaume Scheibel <[email protected]>, Damien DUPORTAL <[email protected]>"

# Check https://pkgs.alpinelinux.org/packages?name=asciidoctor&branch=&repo=&arch=&maintainer=
ENV ASCIIDOCTOR_VERSION="1.5.5-r1"
ARG ASCIIDOCTOR_VERSION="1.5.6.1"
ENV asciidoctor_version=${ASCIIDOCTOR_VERSION}

RUN apk add --no-cache \
asciidoctor="${ASCIIDOCTOR_VERSION}" \
bash \
curl \
ca-certificates \
Expand All @@ -26,6 +25,7 @@ RUN apk add --no-cache \
python2-dev \
py2-pip \
ruby-dev \
&& gem install --no-document asciidoctor --version "${asciidoctor_version}" \
&& gem install --no-document asciidoctor-epub3 --version 1.5.0.alpha.7 \
&& gem install --no-document asciidoctor-pdf --version 1.5.0.alpha.15 \
&& gem install --no-document epubcheck --version 3.0.1 \
Expand Down
2 changes: 1 addition & 1 deletion tests/test_suite.bats
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

DOCKER_IMAGE_NAME="docker-asciidoctor:test"
TMP_GENERATION_DIR="${BATS_TEST_DIRNAME}/tmp"
ASCIIDOCTOR_VERSION="1.5.5"
ASCIIDOCTOR_VERSION="1.5.6.1"

clean_generated_files() {
rm -rf "${TMP_GENERATION_DIR}"
Expand Down