From d3a2b01a06336ae2d98bf8bb03bc96cf0328cf91 Mon Sep 17 00:00:00 2001 From: Fabian Winter <5821180+fdw@users.noreply.github.com> Date: Fri, 5 Jan 2024 17:05:27 +0100 Subject: [PATCH] Add beanprice to Docker image (#35) 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..eed5888 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@41576e2ac889e4825e4985b6f6c56aa71de28304 RUN pip3 uninstall -y pip