Update Dockerfile

This commit is contained in:
2025-08-11 01:53:22 +02:00
parent f9760cae07
commit 2f89097219

View File

@@ -4,7 +4,9 @@ FROM python:3.12-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN chmod +x /entrypoint.sh
RUN chmod +x ./entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ENV FLASK_APP=app.py
ENTRYPOINT ["./entrypoint.sh"]
CMD []