Skip to content

Commit

Permalink
Merge tag 'release/0.7.6' into develop
Browse files Browse the repository at this point in the history
[maven-release-plugin] copy for tag release/0.7.6
  • Loading branch information
wajda committed Mar 30, 2022
2 parents d6c56e4 + a275929 commit 888968c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
10 changes: 9 additions & 1 deletion admin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,16 @@ LABEL \
license="Apache License, version 2.0" \
name="Spline Admin Tool"

# Install Tini
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
tini=0.18* \
&& rm -rf /var/lib/apt/lists/*

USER 1001

COPY target/$PROJECT_BUILD_FINAL_NAME.jar ./admin.jar
COPY entrypoint.sh .

ENTRYPOINT ["sh", "./entrypoint.sh"]
ENTRYPOINT ["tini", "-g", "--", "sh", "./entrypoint.sh"]
CMD ["--help"]
5 changes: 4 additions & 1 deletion kafka-gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,7 @@ EXPOSE 8080
EXPOSE 8009

RUN rm -rf /usr/local/tomcat/webapps/*
COPY target/*.war /usr/local/tomcat/webapps/ROOT.war

USER 1001
ARG PROJECT_BUILD_FINAL_NAME
COPY --chown=1001 target/$PROJECT_BUILD_FINAL_NAME/ /usr/local/tomcat/webapps/ROOT/
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class ArangoDatabaseFacade(connectionURL: ArangoConnectionURL, maybeSSLContext:
.having(maybeSSLContext)(_ sslContext _)
}

// enable active failover
arangoBuilder.acquireHostList(activeFailover)

for ((host, port) <- hostsWithPorts) arangoBuilder.host(host, port)
Expand Down
5 changes: 4 additions & 1 deletion rest-gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,7 @@ EXPOSE 8080
EXPOSE 8009

RUN rm -rf /usr/local/tomcat/webapps/*
COPY target/*.war /usr/local/tomcat/webapps/ROOT.war

USER 1001
ARG PROJECT_BUILD_FINAL_NAME
COPY --chown=1001 target/$PROJECT_BUILD_FINAL_NAME/ /usr/local/tomcat/webapps/ROOT/

0 comments on commit 888968c

Please sign in to comment.