summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less6
-rw-r--r--ecomp-portal-widget-ms/widget-ms/pom.xml17
-rw-r--r--ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile6
3 files changed, 8 insertions, 21 deletions
diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less
index a9c3d800..b4cb0100 100644
--- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less
+++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.less
@@ -119,8 +119,8 @@ padding-bottom: 20px;
.add-widget-field .btn-calendar-icon {
position: relative;
width: 20px;
- right:-225px;
- top:-27px;
+ right: 25px;
+ top: 0px;
}
.dialog-control{
bottom:30px;
@@ -134,4 +134,4 @@ input[type="text"]:focus {
overflow:auto;
}
- \ No newline at end of file
+
diff --git a/ecomp-portal-widget-ms/widget-ms/pom.xml b/ecomp-portal-widget-ms/widget-ms/pom.xml
index 14820b65..dcab5721 100644
--- a/ecomp-portal-widget-ms/widget-ms/pom.xml
+++ b/ecomp-portal-widget-ms/widget-ms/pom.xml
@@ -146,20 +146,13 @@
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
+ <!-- No deployment step for this project -->
<plugin>
- <groupId>com.spotify</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <version>0.4.11</version>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <version>2.8</version>
<configuration>
- <imageName>${project.artifactId}</imageName>
- <dockerDirectory>${project.basedir}/src/main/docker</dockerDirectory>
- <resources>
- <resource>
- <targetPath>/</targetPath>
- <directory>${project.build.directory}</directory>
- <include>${project.build.finalName}.jar</include>
- </resource>
- </resources>
+ <skip>true</skip>
</configuration>
</plugin>
diff --git a/ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile b/ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile
deleted file mode 100644
index 7e25c222..00000000
--- a/ecomp-portal-widget-ms/widget-ms/src/main/docker/Dockerfile
+++ /dev/null
@@ -1,6 +0,0 @@
-FROM frolvlad/alpine-oraclejdk8:slim
-VOLUME /tmp
-ADD widget-ms.jar app.jar
-RUN sh -c 'touch /app.jar'
-ENV JAVA_OPTS=""
-ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]