Skip to content

Commit cf7e7d8

Browse files
author
rathnapandi
committed
- change entrypoint.sh
1 parent 73c0ffc commit cf7e7d8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ FROM ghcr.io/axway-api-management-plus/apimcli:1.14.7
44
# Copies your code file from your action repository to the filesystem path `/` of the container
55
COPY entrypoint.sh /entrypoint.sh
66

7+
78
# Code file to execute when the docker container starts up (`entrypoint.sh`)
89
ENTRYPOINT ["/entrypoint.sh"]

entrypoint.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
#!/bin/sh
2-
printenv
3-
cd /opt/apim-cli
4-
java -Xms64m -Xmx256m -cp "lib/*" com.axway.apim.cli.APIManagerCLI ${INPUT_COMMAND}
2+
java -Xms64m -Xmx256m -cp "/opt/apim-cli/lib/*" com.axway.apim.cli.APIManagerCLI ${INPUT_COMMAND}
53

64

0 commit comments

Comments
 (0)