From ec6e80122152f224eabbc970228cd4b6ba309bc5 Mon Sep 17 00:00:00 2001 From: Fabian Winter <5821180+fdw@users.noreply.github.com> Date: Thu, 4 Jan 2024 09:39:09 +0100 Subject: [PATCH] Add beanprice to Docker image Unfortunately, beanprice isn't on PyPi (https://github.com/beancount/beanprice/issues/3) and hasn't had a release in years (https://github.com/beancount/beanprice/issues/84). Therefore, we have to use to just install what's in the repo... Issue: #32 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b9d9651..eeb4256 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,6 +45,7 @@ RUN CFLAGS=-s pip3 install -U /tmp/build/beancount RUN pip3 install -U /tmp/build/fava ADD requirements.txt . RUN pip3 install --require-hashes -U -r requirements.txt +RUN pip3 install git+https://github.com/beancount/beanprice.git RUN pip3 uninstall -y pip