edit docker file for entrypoint

This commit is contained in:
2025-10-19 11:33:57 +03:30
parent 6f720aed12
commit a4dd84f3de

View File

@@ -19,6 +19,9 @@ RUN pip install -r requirements.txt
# copy project
COPY . /app/
# Add entrypoint permission
RUN chmod +x /app/entrypoint.sh
EXPOSE 5000
ENTRYPOINT ["/app/entrypoint.sh"]