mirror of
https://github.com/andersrh/Podmanfiles.git
synced 2026-05-26 16:58:03 +00:00
changed base and new apps
This commit is contained in:
parent
216e9fce47
commit
f8ed440ee8
42 changed files with 299 additions and 13 deletions
6
ubuntu/base-gui.Dockerfile
Normal file
6
ubuntu/base-gui.Dockerfile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
FROM ubuntu:22.04
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt update && apt upgrade -y && apt clean
|
||||
RUN apt install -y fish htop nano firejail bash apt-utils bc curl dialog diffutils findutils gnupg2 less libnss-myhostname libvte-2.91-common libvte-common lsof ncurses-base passwd pinentry-curses procps sudo time wget util-linux libegl1-mesa libgl1-mesa-glx libvulkan1 mesa-vulkan-drivers libva2 libva-wayland2 libva-glx2 libva-drm2 libva-x11-2 intel-media-va-driver va-driver-all && apt clean
|
||||
RUN apt install -y gconf2 gconf-service libnotify4 libappindicator1 libnss3 libsecret-1-dev gnome-keyring && apt clean
|
||||
RUN apt install -y libasound2 libgles2 && apt clean
|
||||
5
ubuntu/build.sh
Executable file
5
ubuntu/build.sh
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
podman build -t andersrh/ubuntu/base-gui -f base-gui.Dockerfile .
|
||||
podman tag localhost/andersrh/ubuntu/base-gui:latest localhost/andersrh/ubuntu/base-gui:22.04
|
||||
# podman build -t andersrh/fedora-toolbox/gui -f gui.Dockerfile .
|
||||
5
ubuntu/hardinfo/Dockerfile
Normal file
5
ubuntu/hardinfo/Dockerfile
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
FROM localhost/andersrh/ubuntu/base-gui
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt install -y hardinfo && apt clean
|
||||
7
ubuntu/hardinfo/build.sh
Executable file
7
ubuntu/hardinfo/build.sh
Executable file
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
APPNAME="hardinfo"
|
||||
|
||||
podman build -t andersrh/ubuntu/$APPNAME -f Dockerfile .
|
||||
distrobox create --image andersrh/ubuntu/$APPNAME --home ~/containers/$APPNAME/ $APPNAME
|
||||
distrobox enter $APPNAME -- distrobox-export --app $APPNAME
|
||||
Loading…
Add table
Add a link
Reference in a new issue