From d0f7fe129d16b2790f5d4d9ea499c0158c98f69b Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 16 Jul 2019 12:29:15 -0700 Subject: [PATCH] rename start.sh for consistency with other packages --- Dockerfile | 6 +++--- start_searx.sh => start.sh | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename start_searx.sh => start.sh (100%) diff --git a/Dockerfile b/Dockerfile index c6ee124..c07dd89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617 -RUN mkdir -p /app/code +RUN mkdir -p /app/code /app/pkg WORKDIR /app/code RUN apt update && \ @@ -17,6 +17,6 @@ RUN chown -R www-data.www-data /app/code EXPOSE 8888 -ADD start_searx.sh /app/ +COPY start.sh /app/pkg/start.sh -CMD [ "/app/start_searx.sh" ] +CMD [ "/app/pkg/start.sh" ] diff --git a/start_searx.sh b/start.sh similarity index 100% rename from start_searx.sh rename to start.sh