-2
I have a dockerfile in my project using the image below: FROM Maven:3.3-jdk-8 as Builder
When I run the build everything runs perfectly: Docker build -t pun/server:1.0 .
But the problem is that the tag naming does not work, when I run the command "sudo Docker images" my images are created as
https://i.stack.Imgur.com/8VrdD.png
Does anyone know what’s going on?
Thank you.