added community voting and fixed bugs

This commit is contained in:
Subinacls
2026-06-09 06:50:38 -04:00
parent 9ca7d35ce0
commit a789fb131f
7 changed files with 997 additions and 97 deletions
-5
View File
@@ -4,11 +4,6 @@ FROM python:3.12-slim
# Set working directory
WORKDIR /app
# Install system dependencies (if needed)
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first (better layer caching)
COPY requirements.txt .