commit 714c0a27e1add10b4862bc22488ac86217877efc parent c5d7928c4a7e15c5448c8faa5a179f9ecd8e2199 Author: cbeauhilton <34774299+cbeauhilton@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:12:47 -0500 pipx Diffstat:
M | Dockerfile | | | 8 | +++++--- |
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/Dockerfile b/Dockerfile @@ -3,9 +3,11 @@ FROM ubuntu:latest # Install dependencies RUN apt-get update && apt-get install -y wget tar pandoc -# Install highlighter -RUN apt-get install -y python3 python3-pip -RUN pip3 install highlighter +# Install pipx and highlighter +RUN apt-get install -y python3 python3-pip python3-venv +RUN python3 -m pip install --user pipx +RUN python3 -m pipx ensurepath +RUN pipx install highlighter # Extract soupault RUN tar -xvf soupault-4.10.0-linux-x86_64.tar.gz