my-ostree-OS/containers/cachyos/ledgerlive/Dockerfile
Anders Rytter Hansen 2eaecf94f6 add Ledger Live
2023-11-07 09:20:30 +01:00

19 lines
375 B
Docker

FROM ghcr.io/andersrh/containers/cachyos/base-gui:main
WORKDIR /app
COPY containers/cachyos/ledgerlive/ledger-live-bin /app/ledger-live-bin
COPY containers/cachyos/ledgerlive/ledger-udev /app/ledger-udev
RUN chown -R build /app
USER build
RUN cd ledger-udev \
&& makepkg -si --noconfirm
RUN cd ledger-live-bin \
&& makepkg -si --noconfirm \
&& rm -rf /app/*
USER root