Entferne nicht mehr benötigte Dateien: Lösche docker-compose.yml, Dockerfile, README.md, requirements.txt, start_server.bat, start-flask-server.py, start.sh, test_server.py, sowie alle zugehörigen Datenbank- und Website-Dateien. Diese Bereinigung optimiert die Projektstruktur und entfernt veraltete Komponenten.

This commit is contained in:
2025-04-30 12:34:06 +02:00
parent 38ac13e87c
commit f69356473b
32 changed files with 0 additions and 2229 deletions

View File

@@ -1,27 +0,0 @@
FROM python:3.11-slim
WORKDIR /app
# System dependencies
RUN apt-get update && apt-get install -y \
gcc \
python3-dev \
libffi-dev \
&& rm -rf /var/lib/apt/lists/*
# Clean up and install requirements
RUN rm -rf /app/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt \
&& pip install --no-cache-dir wheel setuptools
# Copy application files
COPY website/ ./website/
COPY requirements.txt .
EXPOSE 6000
# Verify installations
RUN pip list
CMD ["python", "website/app.py"]