feat: implement referral payment system and enhance ticket management

This commit is contained in:
2026-04-18 22:34:15 +07:00
parent 3d19d9189b
commit 78a0ef9750
14 changed files with 165 additions and 31 deletions

View File

@@ -31,8 +31,11 @@ COPY --from=builder /install /usr/local
# Copy application source code
COPY . .
RUN sed -i 's/\r$//' ./entrypoints/startup.sh && \
chmod +x ./entrypoints/startup.sh
# Ensure the startup script is executable
RUN chmod +x entrypoints/startup.sh
RUN chmod +x ./entrypoints/startup.sh
# Default command runs linting, migrations, and starts the bot
CMD ["entrypoints/startup.sh"]
CMD ["sh", "./entrypoints/startup.sh"]