Initial release

This commit is contained in:
Francesco Carmelo Capria 2025-06-21 18:15:33 +02:00
commit ae5e4b8873
52 changed files with 17572 additions and 0 deletions

25
backend/Dockerfile Normal file
View file

@ -0,0 +1,25 @@
FROM python:3.11-slim
RUN apt-get update && apt-get install -y \
gcc \
g++ \
libpq-dev \
libffi-dev \
libxml2-dev \
libxslt1-dev \
libcairo2-dev \
libpango1.0-dev \
libgdk-pixbuf2.0-dev \
libgtk-3-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "main.py"]