chore: Delete numerous application modules, templates, static assets, documentation, and build files.

This commit is contained in:
2026-02-25 17:09:27 -03:00
parent 7ddaa2d1f9
commit 2fc4fafed7
562 changed files with 17 additions and 6810 deletions

View File

@@ -1,21 +0,0 @@
FROM python:3
RUN git clone https://github.com/welton89/RRBEC.git
RUN cd RRBEC
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN python gestaoRaul/manage.py collectstatic --noinput
# RUN python gestaoRaul/manage.py migrate --noinput
WORKDIR /app/gestaoRaul
CMD [ "gunicorn", "-w", "4", "--timeout", "15", "gestaoRaul.wsgi:application", "--bind", "0.0.0.0:8000" ]