From 5490bd083f0c1ac1aa3ae3c0e3181bbbf3466300 Mon Sep 17 00:00:00 2001 From: Vivek Santayana Date: Fri, 19 Aug 2022 15:28:27 +0100 Subject: [PATCH] Make reset script executable during image creation --- ref-test/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ref-test/Dockerfile b/ref-test/Dockerfile index 719f3d2..d4fe647 100644 --- a/ref-test/Dockerfile +++ b/ref-test/Dockerfile @@ -4,5 +4,5 @@ ENV DATA=$DATA WORKDIR /ref-test COPY . . RUN pip install --upgrade pip && pip install -r requirements.txt -RUN chmod +x install.py && ./install.py +RUN chmod +x install.py reset.py && ./install.py CMD [ "gunicorn", "-b", "0.0.0.0:5000", "-w", "5", "wsgi:app" ] \ No newline at end of file