fix docker issue
This commit is contained in:
@@ -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"]
|
||||||
@@ -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
|
||||||
Reference in New Issue
Block a user