fix docker issue
This commit is contained in:
@@ -2,11 +2,17 @@ FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy requirements first for better caching
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy all application files
|
||||
COPY . .
|
||||
|
||||
# Ensure proper permissions
|
||||
RUN chmod +x app.py
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["python", "app.py"]
|
||||
# Use python module syntax for better reliability
|
||||
CMD ["python", "-u", "app.py"]
|
||||
@@ -8,6 +8,4 @@ services:
|
||||
environment:
|
||||
- FLASK_ENV=development
|
||||
- SECRET_KEY=your-secret-key-change-in-production
|
||||
volumes:
|
||||
- .:/app
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user