update script added

This commit is contained in:
andersrh 2023-07-02 00:19:04 +02:00
commit 76bbd5d216
4 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,3 @@
FROM andersrh/fedora-toolbox/base-gui:latest
RUN dnf update -y

5
fedora-toolbox/update.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
podman build -t andersrh/fedora-toolbox/base-gui --no-cache -f update.Dockerfile
podman tag localhost/andersrh/fedora-toolbox/base-gui:latest localhost/andersrh/fedora-toolbox/base-gui:38
# podman build -t andersrh/fedora-toolbox/gui -f gui.Dockerfile .

3
fedora/update.Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM andersrh/fedora/base-gui:latest
RUN dnf update -y

5
fedora/update.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
podman build -t andersrh/fedora/base-gui --no-cache -f update.Dockerfile
podman tag localhost/andersrh/fedora/base-gui:latest localhost/andersrh/fedora/base-gui:38
# podman build -t andersrh/fedora-toolbox/gui -f gui.Dockerfile .