Delete entrypoint.sh

This commit is contained in:
2025-05-01 21:10:14 +02:00
parent 071c71ae99
commit f6279d19cd

View File

@@ -1,14 +0,0 @@
#!/bin/sh
if [ -z "$1" ]; then
echo "No command provided"
exit 1
fi
if [ "$1" = "start" ]; then
echo "Running the command: python /app/pyrpg.py ${NUMBER_OF_PSEUDONYMS:-100}"
python /app/pyrpg.py ${NUMBER_OF_PSEUDONYMS:-100}
else
echo "Running the command: $@"
exec "$@"
fi