Make reset script executable during image creation

This commit is contained in:
Vivek Santayana 2022-08-19 15:28:27 +01:00
parent 3cb78055ff
commit 5490bd083f

View File

@ -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" ]