feat: add save frame if there is sessionId
All checks were successful
Build Worker Base and Application Images / check-base-changes (push) Successful in 8s
Build Worker Base and Application Images / build-base (push) Successful in 5m23s
Build Worker Base and Application Images / build-docker (push) Successful in 3m11s
Build Worker Base and Application Images / deploy-stack (push) Successful in 23s

This commit is contained in:
ziesorx 2025-09-25 00:45:09 +07:00
parent 965a0d0a72
commit 2eba1f94ea
2 changed files with 95 additions and 0 deletions

View file

@ -20,5 +20,9 @@ RUN pip install --no-cache-dir -r requirements.base.txt
# Set working directory
WORKDIR /app
# Create images directory for bind mount
RUN mkdir -p /app/images && \
chmod 755 /app/images
# This base image will be reused for all worker builds
CMD ["python3", "-m", "fastapi", "run", "--host", "0.0.0.0", "--port", "8000"]