From f6279d19cded779bc43959c523bd992536616ae2 Mon Sep 17 00:00:00 2001 From: Rawleenc Dev Date: Thu, 1 May 2025 21:10:14 +0200 Subject: [PATCH] Delete entrypoint.sh --- entrypoint.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 entrypoint.sh diff --git a/entrypoint.sh b/entrypoint.sh deleted file mode 100644 index 06b0aef..0000000 --- a/entrypoint.sh +++ /dev/null @@ -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