fix docker issue

This commit is contained in:
2025-06-30 16:24:30 +02:00
parent 0f7627e100
commit 98adfb015b
2 changed files with 7 additions and 3 deletions

View File

@@ -2,11 +2,17 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
# Copy requirements first for better caching
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# Copy all application files
COPY . . COPY . .
# Ensure proper permissions
RUN chmod +x app.py
EXPOSE 5000 EXPOSE 5000
CMD ["python", "app.py"] # Use python module syntax for better reliability
CMD ["python", "-u", "app.py"]

View File

@@ -8,6 +8,4 @@ services:
environment: environment:
- FLASK_ENV=development - FLASK_ENV=development
- SECRET_KEY=your-secret-key-change-in-production - SECRET_KEY=your-secret-key-change-in-production
volumes:
- .:/app
restart: unless-stopped restart: unless-stopped