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 f03f605 commit 97bbc11Copy full SHA for 97bbc11
Dockerfile
@@ -1,10 +1,11 @@
1
FROM ghcr.io/lambda-feedback/evaluation-function-base/wolfram:latest as base
2
3
# Command to start the evaluation function with
4
-ENV FUNCTION_COMMAND="echo $WOLFRAMSCRIPT_ENTITLEMENTID && curl google.com && wolframscript"
+ENV FUNCTION_COMMAND="bash"
5
6
# Args to start the evaluation function with
7
-ENV FUNCTION_ARGS="-f,/app/evaluation_function.wl"
+# ENV FUNCTION_ARGS="-f,/app/evaluation_function.wl"
8
+ENV FUNCTION_ARGS="-f,/app/test.sh"
9
10
# Interface to use for the evaluation function
11
ENV FUNCTION_INTERFACE="file"
test.sh
@@ -0,0 +1,4 @@
+echo TEST CODE FOR AWS
+echo $WOLFRAMSCRIPT_ENTITLEMENTID
+echo Curling Google
+curl google.com
0 commit comments