add cachyos containers
This commit is contained in:
parent
61fa301aff
commit
31fb5991ff
7 changed files with 444 additions and 0 deletions
10
containers/cachyos/tradingview/Dockerfile
Normal file
10
containers/cachyos/tradingview/Dockerfile
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
FROM ghcr.io/andersrh/containers/cachyos/base-gui
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
USER build
|
||||
RUN git clone https://aur.archlinux.org/tradingview.git \
|
||||
&& cd tradingview \
|
||||
&& makepkg -si --noconfirm \
|
||||
&& rm -rf /app/*
|
||||
USER root
|
||||
8
containers/cachyos/tradingview/build.sh
Executable file
8
containers/cachyos/tradingview/build.sh
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
APPNAME="tradingview"
|
||||
|
||||
podman build -t andersrh/cachyos/$APPNAME -f Dockerfile .
|
||||
podman rm -f $APPNAME
|
||||
distrobox create --image ghcr.io/andersrh/containers/cachyos/$APPNAME --home ~/containers/$APPNAME/ $APPNAME
|
||||
distrobox enter $APPNAME -- distrobox-export --app $APPNAME --extra-flags "--enable-features=WaylandWindowDecorations --ozone-platform=wayland"
|
||||
Loading…
Add table
Add a link
Reference in a new issue