diff --git a/Dockerfile b/Dockerfile index 8bb1598..00a12b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,8 @@ RUN rm -rf /var/lib/apt/lists/* RUN curl -fsSL get.docker.com -o get-docker.sh RUN sh get-docker.sh -COPY ./entrypoint.sh /root/ -COPY ./backup.sh /root/ +COPY ./src/entrypoint.sh /root/ +COPY ./src/backup.sh /root/ RUN chmod a+x /root/entrypoint.sh RUN chmod a+x /root/backup.sh diff --git a/backup.sh b/src/backup.sh similarity index 100% rename from backup.sh rename to src/backup.sh diff --git a/entrypoint.sh b/src/entrypoint.sh similarity index 100% rename from entrypoint.sh rename to src/entrypoint.sh