Skip to content

Commit

Permalink
Merge pull request #22 from keyko-io/fix/change-entrypoing
Browse files Browse the repository at this point in the history
Fix/change entrypoint
  • Loading branch information
Enrique Ruiz authored Mar 30, 2020
2 parents 769088b + 193c57f commit 363e1f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: xresloader/upload-to-github-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
file: "server/target/web3-monitoring-agent-*.jar"
file: "server/target/web3-monitoring-agent.jar"
tags: true
draft: false
prerelease: false
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ RUN mv server/target/web3-monitoring-agent.jar web3-monitoring-agent.jar
RUN mv server/docker-scripts/start-monitoring-agent.sh start-monitoring-agent.sh

EXPOSE 8060
CMD chmod +x start-monitoring-agent.sh && ./start-monitoring-agent.sh
ENTRYPOINT ["/bin/sh", "-c"]
CMD ["/start-monitoring-agent.sh"]
Empty file modified server/docker-scripts/start-monitoring-agent.sh
100644 → 100755
Empty file.

0 comments on commit 363e1f6

Please sign in to comment.