-
Notifications
You must be signed in to change notification settings - Fork 553
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
pandoc: point to a joint OCI org image #1078
Conversation
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
LGTM. Thanks @vbatts For the record, before this PR, Travis tests was sometimes failing with:
|
@@ -4,6 +4,8 @@ OUTPUT_DIRNAME ?= output | |||
DOC_FILENAME ?= oci-runtime-spec | |||
DOCKER ?= $(shell command -v docker 2>/dev/null) | |||
PANDOC ?= $(shell command -v pandoc 2>/dev/null) | |||
|
|||
PANDOC_CONTAINER ?= quay.io/oci/pandoc:1.17.0.3-2.fc25.x86_64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PANDOC_CONTAINER ?= quay.io/oci/pandoc:1.17.0.3-2.fc25.x86_64 | |
PANDOC_IMAGE ?= quay.io/oci/pandoc:1.17.0.3-2.fc25.x86_64 |
😇
Given this version string is now much more complex than trusting vbatts/pandoc:latest
, would it also make sense to either have a docker pull $(PANDOC_IMAGE)
target or perhaps have install.tools
do that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(To avoid the .travis.yml
duplication, which will inevitably get out of sync or trip folks up if they need to bump this for whatever reason)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
quay.io/oci/pandoc:latest
seems to work fine. Is there any reason for using an older version?
Can we modify to use the image located at https://github.com/opencontainers/container-images?
|
stale PR |
Signed-off-by: Vincent Batts vbatts@hashbangbash.com