aos/tools/docker/entrypoint.sh
Daniel Schwyn 6d444bf552 Main handout
Signed-off-by: Daniel Schwyn <daniel.schwyn@inf.ethz.ch>
2022-03-03 14:57:51 +01:00

15 lines
248 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2021 The University of British Columbia.
# All rights reserved.
#
# This file is distributed under the terms in the attached LICENSE file.
cd /source
if [ "$1" == "" ]; then
exec "/bin/bash"
else
exec "$@"
fi