Compare commits

...

3 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,8 @@ COPY . .
COPY entrypoint.sh /
RUN npm ci
# Command to run when the Docker container starts
# It assumes the entrypoint is a script that handles the inputs and runs the desired commands
ENTRYPOINT ["sh", "/entrypoint.sh"]

View File

@ -5,8 +5,6 @@ export INPUT_NODE=$1
export INPUT_SEED=$2
export INPUT_FOLDER=$3
echo "ARGS:" $@
# Providing a default value for INPUT_FOLDER if not set
if [ -z "$INPUT_FOLDER" ]
then