changed cnn architecture, added website image upload

This commit is contained in:
2026-04-29 14:02:56 +02:00
parent fd1c111739
commit 262dbe9f98
18 changed files with 264 additions and 51 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Copy requirements first (better Docker layer caching)
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Make sure the startup script is executable
RUN chmod +x start_server.sh
# Use the script as the container entrypoint
ENTRYPOINT ["./start_server.sh"]