Your mac address should already be placed there so don't worry about that.
* Build the container
* Build the container + Launch the licensing daemon
#+begin_src bash
podman build -t microchip_tools .
make daemon
#+end_src
* Create a podman network
#+begin_src bash
podman network create
#+end_src
The next steps assume this network name is podman1, the default first network name. If you need to name it something else, change the ~--network~ line in the makefile target. This will be polished later.
* Run libero from inside the container
#+begin_src bash
export LIBERO_LICENSE_MAC=<your mac address>
make bash
podman exec -it --user root libero bash
. /opt/microchip/scripts/env
libero
#+end_src
You should now be root inside of your running container. It should now be as simple as calling ~libero~.