Skip to content

Commit

Permalink
fix: add missing distrobox package (fake pinentry)
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Apr 9, 2024
1 parent a9c11ca commit be6c8a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion toolboxes/wolfi-toolbox/Containerfile.wolfi
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ RUN apk update && \
RUN grep -v '^#' /tmp/packages.wolfi | xargs apk add && \
if [[ "${IMAGE_NAME}" =~ "dx" ]]; then \
grep -v '^#' /tmp/packages.wolfi-dx | xargs apk add \
; fi
; fi && \
echo "#!/bin/sh" >> /usr/bin/pinentry && \
echo "exit 0" >> /usr/bin/pinentry && \
chmod +x /usr/bin/pinentry

# DX: Include utilities available in the melange SDK
RUN if [[ "${IMAGE_NAME}" =~ "dx" ]]; then \
Expand Down

0 comments on commit be6c8a4

Please sign in to comment.