Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Along with this address issue about missing comment flagged by SonarQube
  • Loading branch information
Bert-R committed Jun 3, 2021
1 parent 4d4150a commit ffd26a6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions adminservice/src/main/docker/Dockerfile
Expand Up @@ -6,6 +6,7 @@ EXPOSE 8080 9080

VOLUME /tmp

RUN mkdir -p config/dummy # Workaround for spring-projects/spring-boot#26627
ADD adminservice.jar app.jar

RUN sh -c 'touch /app.jar'
Expand Down
1 change: 1 addition & 0 deletions analysisservice/src/main/docker/Dockerfile
Expand Up @@ -6,6 +6,7 @@ EXPOSE 8080 9080

VOLUME /tmp

RUN mkdir -p config/dummy # Workaround for spring-projects/spring-boot#26627
ADD analysisservice.jar app.jar

RUN sh -c 'touch /app.jar'
Expand Down
1 change: 1 addition & 0 deletions appservice/src/main/docker/Dockerfile
Expand Up @@ -6,6 +6,7 @@ EXPOSE 8080 9080

VOLUME /tmp

RUN mkdir -p config/dummy # Workaround for spring-projects/spring-boot#26627
ADD appservice.jar app.jar

RUN sh -c 'touch /app.jar'
Expand Down
1 change: 1 addition & 0 deletions batchservice/src/main/docker/Dockerfile
Expand Up @@ -6,6 +6,7 @@ EXPOSE 8080 9080

VOLUME /tmp

RUN mkdir -p config/dummy # Workaround for spring-projects/spring-boot#26627
ADD batchservice.jar app.jar

RUN sh -c 'touch /app.jar'
Expand Down
Expand Up @@ -47,6 +47,7 @@ public ItemWriter<Object> noopItemWriter()
@Override
public void write(List<? extends Object> items) throws Exception
{
// Noop-implementation, so nothing to do here
}
};
}
Expand Down
1 change: 1 addition & 0 deletions dbinit/src/main/docker/Dockerfile
@@ -1,6 +1,7 @@
FROM yonadev/mariadb-liquibase-update:3.6.3

# Add jq (to validate json)
RUN mkdir -p config/dummy # Workaround for spring-projects/spring-boot#26627
ADD https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 /usr/local/bin/jq
RUN chmod +x /usr/local/bin/jq

Expand Down

0 comments on commit ffd26a6

Please sign in to comment.