From c6f32c400f74fb2c3183b6cef8bfa4f2804184ae Mon Sep 17 00:00:00 2001 From: Marcus Poehls Date: Tue, 17 Dec 2019 14:58:35 +0100 Subject: [PATCH] rename entrypoint --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 35a6ec7..a3870cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM docker:stable -COPY entrypoint.sh /entrypoint.sh -RUN chmod +x /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] +COPY start-redis.sh /start-redis.sh +RUN chmod +x /start-redis.sh +ENTRYPOINT ["/start-redis.sh"]