1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
ledger-sqlite/Dockerfile

16 lines
364 B
Docker
Raw Normal View History

# TODO: Change this to a multiarch hledger image
FROM dastapov/hledger:1.26 as hledger
FROM library/python:3.10-slim
COPY --from=hledger /usr/bin/hledger /usr/bin/hledger
COPY src /code
# TODO: Support more than one ledger file
ENV LEDGER_FILE=/data/all.ledger
ENV OUTPUT_FILE=/data/all.sqlite
ENV OVERWRITE_OUTPUT=true
ENTRYPOINT ["python", "/code/main.py"]