Was ist der Befehl, das Bild von Dockerfile und Podman zu erstellen?

# using the defautls file Dockerfile
docker build . -t [image-name]

# using the defautls file Podman
podman build . -t [image-name]
Outstanding Oystercatcher