We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c0ffc commit cf7e7d8Copy full SHA for cf7e7d8
Dockerfile
@@ -4,5 +4,6 @@ FROM ghcr.io/axway-api-management-plus/apimcli:1.14.7
4
# Copies your code file from your action repository to the filesystem path `/` of the container
5
COPY entrypoint.sh /entrypoint.sh
6
7
+
8
# Code file to execute when the docker container starts up (`entrypoint.sh`)
9
ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
@@ -1,6 +1,4 @@
1
#!/bin/sh
2
-printenv
3
-cd /opt/apim-cli
-java -Xms64m -Xmx256m -cp "lib/*" com.axway.apim.cli.APIManagerCLI ${INPUT_COMMAND}
+java -Xms64m -Xmx256m -cp "/opt/apim-cli/lib/*" com.axway.apim.cli.APIManagerCLI ${INPUT_COMMAND}
0 commit comments