Tony Grosinger
461812eace
Description, date, and total fields are functional. Next step is to start adding structure to the form and adding a window to the side which will show previous similar transactions and autocomplete suggestions. Arrow keys will be able to auto-fill the current field from the selected suggestion.
16 lines
533 B
Docker
16 lines
533 B
Docker
FROM ghcr.io/tgrosinger/hledger-multiarch:1.26.1 as hledger
|
|
|
|
FROM docker.io/library/golang:1.18-bullseye
|
|
|
|
# [Optional] Uncomment this section to install additional OS packages.
|
|
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
|
|
# && apt-get -y install --no-install-recommends <your-package-list-here>
|
|
|
|
# [Optional] Uncomment the next lines to use go get to install anything else you need
|
|
# USER vscode
|
|
# RUN go get -x <your-dependency-or-tool>
|
|
|
|
COPY --from=hledger /usr/bin/hledger /usr/bin/hledger
|
|
|
|
ENTRYPOINT bash
|