From f6068d7872b9b9d2e6e13b33fe164b6390b0e77a Mon Sep 17 00:00:00 2001 From: srueda99 Date: Mon, 18 Apr 2022 14:15:30 -0500 Subject: [PATCH] Changes on Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f9bed3..88db657 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Runs on Alpine container, latest version. FROM alpine -# Copy the script to the home directory of the container. -COPY entrypoint.sh /entrypoint.sh +# Copy the content to the container. +COPY . / # Grant executable permission on the script. RUN ["chmod", "+x", "/entrypoint.sh"] # Runs the script.