Skip to content

Commit

Permalink
add build-essential and wget to container (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsavchenko authored Aug 16, 2023
1 parent c278892 commit dea3ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nb2workflow/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def _nb2w_dockerfile_gen(context_dir, git_origin, source_from, meta, nb2wversion
# run as root is the fallback for non-jupyter based images

dockerfile_content += ("USER root\n"
"RUN apt-get update && apt-get install -y git curl\n")
"RUN apt-get update && apt-get install -y git curl wget build-essential\n")

if source_from == 'localdir':
dockerfile_content += ("COPY --chown=$MAMBA_USER:$MAMBA_USER nb-repo/ /repo/\n"
Expand Down

0 comments on commit dea3ed0

Please sign in to comment.