From 7efd3972a1d49a7e4ed59c961932f5a75ab41a48 Mon Sep 17 00:00:00 2001 From: tomeichlersmith Date: Fri, 29 Mar 2024 08:15:02 -0500 Subject: [PATCH] rename env init to emphasize that it is ldmx specific --- Dockerfile | 4 ++-- env-init.sh => ldmx-env-init.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename env-init.sh => ldmx-env-init.sh (100%) diff --git a/Dockerfile b/Dockerfile index 72bf981..710a5ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -472,8 +472,8 @@ RUN update-ca-certificates # copy environment initialization script into container # and make sure the default profile will call it as well -COPY ./env-init.sh /etc/ -RUN printf "\n. /etc/env-init.sh\n" >> /etc/skel/.profile +COPY ./ldmx-env-init.sh /etc/ +RUN printf "\n. /etc/ldmx-env-init.sh\n" >> /etc/skel/.profile #run environment setup when docker container is launched and decide what to do from there # will require the environment variable LDMX_BASE defined diff --git a/env-init.sh b/ldmx-env-init.sh similarity index 100% rename from env-init.sh rename to ldmx-env-init.sh