FROM thundraio/thundra-lambda-container-base-java8:LATEST
RUN /opt/thundra/thundra-version-updater.sh 2.6.16
# your function code path
ARG FUNCTION_CODE_PATH="target/sample-app.jar"
# copy your function code to the task directory
COPY ${FUNCTION_CODE_PATH} ${TASK_DIR}
# Set the CMD to your handler
CMD ["io.thundra.container.sample.Handler"]