File tree 5 files changed +23
-5
lines changed 5 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 1
- FROM quay.io/crcont /antora:latest
1
+ FROM quay.io/crc-org /antora:3.1.9
2
2
3
3
RUN apk update \
4
4
&& apk add git
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ SHELL := /bin/bash -o pipefail
2
2
3
3
# Docs build related variables
4
4
DOCS_BUILD_DIR ?= public
5
- DOCS_BUILD_CONTAINER ?= quay.io/crcont /antora:latest
5
+ DOCS_BUILD_CONTAINER ?= quay.io/crc-org /antora:3.1.9
6
6
DOCS_SERVE_CONTAINER ?= docker.io/httpd:alpine
7
7
DOCS_TEST_CONTAINER ?= docker.io/wjdp/htmltest:latest
8
8
DOCS_BUILD_TARGET ?= ./source/getting_started/master.adoc
15
15
16
16
.PHONY : build_docs
17
17
build_docs :
18
- ${CONTAINER_RUNTIME} run -e CI -v $(CURDIR ) :/antora $(SELINUX_VOLUME_LABEL ) --rm $(DOCS_BUILD_CONTAINER ) --stacktrace antora-playbook.yml
18
+ ${CONTAINER_RUNTIME} run -e CI -v $(CURDIR ) :/workspace $(SELINUX_VOLUME_LABEL ) --rm $(DOCS_BUILD_CONTAINER ) --stacktrace antora-playbook.yml
19
19
20
20
.PHONY : docs_serve
21
21
docs_serve : build_docs
Original file line number Diff line number Diff line change 1
1
FROM docker.io/antora/antora
2
- LABEL org.opencontainers.image.source="https://github.com/crc-org/crc"
2
+
3
+ LABEL org.opencontainers.image.source="https://github.com/crc-org/docs"
4
+
3
5
RUN yarn global add --ignore-optional --silent \
4
6
@antora/atlas-extension \
5
7
@antora/cli \
@@ -8,4 +10,7 @@ RUN yarn global add --ignore-optional --silent \
8
10
@antora/pdf-extension \
9
11
@antora/site-generator \
10
12
asciidoctor-kroki
11
- RUN antora --version
13
+
14
+ RUN mkdir -p /workspace
15
+ VOLUME /workspace
16
+ WORKDIR /workspace
Original file line number Diff line number Diff line change
1
+ Antora generation image
2
+ =======================
3
+
4
+ This image is a modification of the upstream Alpine-based
5
+ image to contain a few additional extensions
6
+
7
+
8
+ ## Usage instructions
9
+ ``` shell
10
+ $ podman run -v $PWD :/workspace \
11
+ quay.io/crc-org/antora:3.1.9 \
12
+ antora-playbook.yml
13
+ ```
You can’t perform that action at this time.
0 commit comments