#!/bin/sh ###################################################################### # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # # SPDX-License-Identifier: MIT-0 # ###################################################################### # Container startup script echo "Container-Root/startup.sh executed" while true; do date; sleep 5; done