feat: Add Docker Compose setup for the bot and PostgreSQL database, and update Dockerfile to expose port 8000 and unbuffer Python output.

This commit is contained in:
virtus
2026-01-16 19:39:45 +07:00
parent b24365927a
commit e120474b9d
3 changed files with 72 additions and 4 deletions
+4
View File
@@ -14,4 +14,8 @@ RUN useradd --create-home --shell /bin/bash app && \
chown -R app:app /app
USER app
ENV PYTHONUNBUFFERED=1
EXPOSE 8000
CMD ["uv", "run", "python", "main.py"]