followed some maven docker examples, came up with following code, run mvn package dockerfile:build but get these errors: [ERROR] No plugin found for prefix 'dockerfile' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories ...
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompnay.learning</groupId>
<artifactId>my-app-base-pom</artifactId>
<version>0.0.1</version>
<properties>
<dockerfile.version>0.0.1</dockerfile.version>
<docker.image.prefix>AdminService</docker.image.prefix>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>0.0.1</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>build</goal>
</goals>
<configuration>
<repository>docker.io/kkapelon/docker-maven-comparsion</repository>
<tag>projectVersion</tag>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Where should i go from here pls ?