This commit is contained in:
pika 2025-03-24 17:51:57 +01:00
parent a4ce8a291d
commit 950d72aba1
8 changed files with 375 additions and 22 deletions

View file

@ -7,6 +7,10 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
# Make entrypoint script executable
RUN chmod +x /app/entrypoint.sh
EXPOSE 5000
CMD ["python", "app.py"]
ENTRYPOINT ["/app/entrypoint.sh"]
CMD ["server"]