fix(docker): add unzip installation to "quarto" Docker image#14463
Merged
cderv merged 1 commit intoquarto-dev:mainfrom Apr 30, 2026
Merged
fix(docker): add unzip installation to "quarto" Docker image#14463cderv merged 1 commit intoquarto-dev:mainfrom
cderv merged 1 commit intoquarto-dev:mainfrom
Conversation
Set DEBIAN_FRONTEND to noninteractive to streamline the build process and install unzip for handling dependencies.
Member
|
Thank you ! |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add unzip installation to the Dockerfile to handle dependencies more effectively. Set the
DEBIAN_FRONTENDto noninteractive to streamline the build process.Most tools that you can install with
quarto installrequire unzip.The most common I believe is
quarto install chrome-headless-shellwhich currently leads to:Installing chrome-headless-shell [✓] Downloading Chrome Headless Shell ERROR: Error executing 'unzip': Failed to spawn 'unzip': entity not found Stack trace: at execProcess (file:///opt/quarto/bin/quarto.js:7918:11) at unzip (file:///opt/quarto/bin/quarto.js:67214:14) at downloadAndExtractChrome (file:///opt/quarto/bin/quarto.js:67391:11) at eventLoopTick (ext:core/01_core.js:179:7) at async Object.preparePackage3 [as preparePackage] (file:///opt/quarto/bin/quarto.js:160811:5) at async installTool (file:///opt/quarto/bin/quarto.js:161246:27) at async _Command.actionHandler (file:///opt/quarto/bin/quarto.js:165171:11) at async _Command.execute (file:///opt/quarto/bin/quarto.js:102027:7) at async _Command.parseCommand (file:///opt/quarto/bin/quarto.js:101904:14) at async quarto4 (file:///opt/quarto/bin/quarto.js:187717:5) at async file:///opt/quarto/bin/quarto.js:187746:5 at async file:///opt/quarto/bin/quarto.js:187600:14 at async mainRunner (file:///opt/quarto/bin/quarto.js:187602:5) at async file:///opt/quarto/bin/quarto.js:187739:3"quarto-full" has unzip so no issues.