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.
13 lines
260 B
Docker
13 lines
260 B
Docker
FROM library/golang:1.18-bullseye as builder
|
|
|
|
WORKDIR /src
|
|
COPY . .
|
|
|
|
# TODO: Add cross compiling and multiple binary distributions.
|
|
RUN go build cmd/ledger-tui/ledger-tui.go
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /src/ledger-tui /ledger-tui
|
|
ENTRYPOINT /ledger-tui
|