diff options
-rw-r--r-- | pomba/network-discovery/pom.xml | 19 | ||||
-rw-r--r-- | pomba/network-discovery/src/main/docker/Dockerfile | 2 |
2 files changed, 0 insertions, 21 deletions
diff --git a/pomba/network-discovery/pom.xml b/pomba/network-discovery/pom.xml index 00af026..e6e84ab 100644 --- a/pomba/network-discovery/pom.xml +++ b/pomba/network-discovery/pom.xml @@ -286,25 +286,6 @@ limitations under the License. </configuration> </execution> <execution> - <id>copy-certificate</id> - <goals> - <goal>copy-resources</goal> - </goals> - <phase>package</phase> - <configuration> - <outputDirectory>${project.basedir}/target/docker-stage/config/auth</outputDirectory> - <resources> - <resource> - <directory>config/auth</directory> - <includes> - <include>*.p12</include> - </includes> - <filtering>false</filtering> - </resource> - </resources> - </configuration> - </execution> - <execution> <id>copy-script</id> <goals> <goal>copy-resources</goal> diff --git a/pomba/network-discovery/src/main/docker/Dockerfile b/pomba/network-discovery/src/main/docker/Dockerfile index b378a89..e9be214 100644 --- a/pomba/network-discovery/src/main/docker/Dockerfile +++ b/pomba/network-discovery/src/main/docker/Dockerfile @@ -12,10 +12,8 @@ RUN mkdir -p $MICROSERVICE_HOME/bin/ ADD network-discovery.jar $MICROSERVICE_HOME/lib/ ADD startService.sh $MICROSERVICE_HOME/bin/ COPY config/ $MICROSERVICE_HOME/config/ -COPY config/auth/ $MICROSERVICE_HOME/config/auth/ RUN chmod 755 $MICROSERVICE_HOME/config/* -RUN chmod 755 $MICROSERVICE_HOME/config/auth/* RUN chmod 755 $MICROSERVICE_HOME/lib/* RUN chmod 755 $MICROSERVICE_HOME/bin/* |