Updated docker and script files to make them more robust

This commit is contained in:
2024-01-04 18:59:51 +00:00
parent 79231a1f0d
commit f1065b8150
3 changed files with 18 additions and 6 deletions

View File

@ -3,4 +3,5 @@ COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
COPY . /app
CMD ["scripts/run.sh"]
RUN chmod +x scripts/run.sh
CMD ["sh", "scripts/run.sh"]