forked from EvergreenCrypto/docker-finance
(for consistenly useful packages that aren't dependencies) and move `less` from "Base dependencies" to this section.
62 lines
1.8 KiB
Docker
62 lines
1.8 KiB
Docker
# docker-finance | modern accounting for the power-user
|
|
#
|
|
# Copyright (C) 2021-2026 Aaron Fiore (Founder, Evergreen Crypto LLC)
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
# Base dependencies
|
|
#
|
|
|
|
# https://hub.docker.com/evergreencrypto/hledger-suite
|
|
FROM evergreencrypto/hledger-suite:latest AS hledger-suite
|
|
|
|
# https://hub.docker.com/_/archlinux
|
|
FROM archlinux:base-devel
|
|
|
|
COPY --from=hledger-suite /usr/local/bin/hledger /usr/local/bin/hledger
|
|
COPY --from=hledger-suite /usr/local/bin/hledger-ui /usr/local/bin/hledger-ui
|
|
COPY --from=hledger-suite /usr/local/bin/hledger-web /usr/local/bin/hledger-web
|
|
COPY --from=hledger-suite /usr/local/bin/hledger-iadd /usr/local/bin/hledger-iadd
|
|
COPY --from=hledger-suite /usr/local/bin/hledger-flow /usr/local/bin/hledger-flow
|
|
|
|
RUN pacman -Syu --noconfirm --disable-download-timeout
|
|
|
|
RUN pacman -Syu \
|
|
bc \
|
|
csvkit \
|
|
vim \
|
|
xan \
|
|
yq \
|
|
--noconfirm --disable-download-timeout
|
|
|
|
#
|
|
# Related "useful" packages (not dependencies)
|
|
#
|
|
|
|
RUN pacman -Syu \
|
|
less \
|
|
--noconfirm --disable-download-timeout
|
|
|
|
#
|
|
# Entrypoint
|
|
#
|
|
|
|
USER root
|
|
COPY ./entrypoint.bash /entrypoint.bash
|
|
RUN chmod a+rx /entrypoint.bash
|
|
ENTRYPOINT ["/entrypoint.bash"]
|
|
|
|
# vim: sw=2 sts=2 si ai et
|