From 29d3b53cf6d8ba8a6aaa5ca8abcb5ba864d24519 Mon Sep 17 00:00:00 2001 From: Nils Mechtel Date: Fri, 18 Oct 2024 16:38:39 +0200 Subject: [PATCH] create scripts folder --- Dockerfile | 2 +- build_and_push.sh => scripts/build_and_push.sh | 0 start_service.sh => scripts/start_service.sh | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename build_and_push.sh => scripts/build_and_push.sh (100%) rename start_service.sh => scripts/start_service.sh (100%) diff --git a/Dockerfile b/Dockerfile index b1dda5b..8d1fc5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN pip install -r /app/requirements-sam.txt COPY ./bioimageio_colab/register_sam_service.py /app/register_sam_service.py # Copy the start service script -COPY ./start_service.sh /app/start_service.sh +COPY ./scripts/start_service.sh /app/start_service.sh # Change ownership of the application directory to the non-root user RUN chown -R bioimageio_colab:bioimageio_colab /app/ diff --git a/build_and_push.sh b/scripts/build_and_push.sh similarity index 100% rename from build_and_push.sh rename to scripts/build_and_push.sh diff --git a/start_service.sh b/scripts/start_service.sh similarity index 100% rename from start_service.sh rename to scripts/start_service.sh