File Explorer

/proc/4/root

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

20 dirs
2 files
lambda-entrypoint.sh397 B · 16 lines
#!/bin/sh# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. if [ $# -ne 1 ]; then  echo "entrypoint requires the handler name to be the first argument" 1>&2  exit 142fiexport _HANDLER="$1" RUNTIME_ENTRYPOINT=/var/runtime/bootstrapif [ -z "${AWS_LAMBDA_RUNTIME_API}" ]; then  exec /usr/local/bin/aws-lambda-rie $RUNTIME_ENTRYPOINTelse  exec $RUNTIME_ENTRYPOINTfi