From ec5bcb4f061362425b2a52887823ce8d08589899 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 7 Dec 2023 18:44:43 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6fe236..03a7e8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM redis:7.2.3-alpine3.18 WORKDIR /redis -ADD init.sh /redis/init.sh -ADD redis.conf /redis/redis.conf +COPY init.sh /redis/init.sh +COPY redis.conf /redis/redis.conf LABEL version="7.2.3" LABEL org.opencontainers.image.authors="https://azagramac.gitbook.io/" @@ -11,5 +11,3 @@ LABEL org.opencontainers.image.authors="https://azagramac.gitbook.io/" EXPOSE 6379/tcp RUN chmod +x /redis/init.sh - -ENTRYPOINT ["/bin/bash", "-c", "/redis/init.sh"]