-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document referring to container images by their hash instead of their (…
…#21) name, as an alternative to the tag system. Minor updates to asciidoctor-spec image to work with the current REUSE and update the Node.js version to current (18).
- Loading branch information
Showing
2 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ label maintainer="Jon Leech <[email protected]>" | |
|
||
# This adds the Node.js repository to the apt registry | ||
# nodejs is actually installed in the next step | ||
run curl -sL https://deb.nodesource.com/setup_12.x | bash - | ||
run curl -fsSL https://deb.nodesource.com/setup_current.x | bash - | ||
|
||
# Debian packages | ||
# pandoc is for potential use with Markdown | ||
|
@@ -68,7 +68,10 @@ run gem install -N \ | |
text-hyphen | ||
|
||
# Python packages | ||
run pip3 install pygments reuse networkx | ||
# Something odd in the Docker build causes errors if setuptools isn't | ||
# installed first, although it should be a dependency of the other packages. | ||
run pip3 install wheel setuptools | ||
run pip3 install codespell networkx pygments reuse | ||
|
||
# JavaScript packages | ||
# escape-string-regexp is locked @2.0.0 because the current version is an | ||
|