From f3811ef09b7011511b0224b27f202b5d749882ba Mon Sep 17 00:00:00 2001 From: miend Date: Wed, 15 Feb 2017 12:19:17 -0600 Subject: [PATCH] Rename the entrypoint script to make it a bit cleaner. --- Dockerfile | 2 +- app-entrypoint.sh => entrypoint.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename app-entrypoint.sh => entrypoint.sh (100%) diff --git a/Dockerfile b/Dockerfile index fe623f8..9cfad01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ VOLUME /var/www/app/public WORKDIR /var/www/app -COPY app-entrypoint.sh /entrypoint.sh +COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/app-entrypoint.sh b/entrypoint.sh similarity index 100% rename from app-entrypoint.sh rename to entrypoint.sh