From dacce4b3e8535cd31d01f75c7cbf3c13c267a394 Mon Sep 17 00:00:00 2001 From: romer8 Date: Mon, 28 Oct 2024 22:22:37 -0600 Subject: [PATCH] added to DockerFile --- Dockerfile | 4 +++- simplified_run.sh => run.sh | 0 2 files changed, 3 insertions(+), 1 deletion(-) rename simplified_run.sh => run.sh (100%) diff --git a/Dockerfile b/Dockerfile index 83e9441..1516b62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,8 @@ ARG MICRO_TETHYS=true \ # ADD APPLICATION FILES # ######################### COPY . ${TETHYS_HOME}/apps/ngiab +COPY run.sh ${TETHYS_HOME}/run.sh + ############### @@ -55,4 +57,4 @@ EXPOSE 80 # RUN # ####### -CMD ["bash", "simplified_run.sh"] \ No newline at end of file +CMD ["bash", "run.sh"] \ No newline at end of file diff --git a/simplified_run.sh b/run.sh similarity index 100% rename from simplified_run.sh rename to run.sh