Skip to content

Commit

Permalink
dev: fix Dockerfile installing of dependencies
Browse files Browse the repository at this point in the history
Avoid the build failing due to an interactive prompt.
  • Loading branch information
cardoe committed Feb 10, 2023
1 parent c9f1497 commit bab1255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN stack install

FROM debian:stable-slim

RUN apt-get update && apt-get install libtinfo5 libgmp10 && rm -rf /var/lib/apt/lists
RUN apt-get update && apt-get -y install libtinfo5 libgmp10 && rm -rf /var/lib/apt/lists

COPY --from=dev /root/.local/bin/hledger* /usr/bin/

Expand Down

0 comments on commit bab1255

Please sign in to comment.