From f919e97446956ab10b2aaf39113829596912723d Mon Sep 17 00:00:00 2001 From: Stephan Porada Date: Wed, 23 Oct 2019 14:15:45 +0200 Subject: [PATCH] Fix wait-for-it clone --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff850f28..ff76ebb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,8 +25,7 @@ RUN python -m venv venv && \ venv/bin/pip install -r requirements.txt # add wait for it -RUN git clone https://github.com/vishnubob/wait-for-it.git /wait-for-it -RUN chmod a+x /wait-for-it/wait-for-it.sh +RUN git clone https://github.com/vishnubob/wait-for-it.git COPY docker-entrypoint.sh /usr/local/bin/ ENTRYPOINT ["docker-entrypoint.sh"]