22 lines
404 B
Docker
22 lines
404 B
Docker
|
|
FROM python:3.12-slim
|
||
|
|
|
||
|
|
# Prevent Python from buffering stdout/stderr
|
||
|
|
ENV PYTHONUNBUFFERED=1
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Install dependencies
|
||
|
|
COPY requirements.txt .
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
|
||
|
|
# Copy application code
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
# Create database directory if needed
|
||
|
|
RUN mkdir -p database
|
||
|
|
|
||
|
|
# Expose Flask/Gunicorn port
|
||
|
|
EXPOSE 5000
|
||
|
|
|
||
|
|
# Start app
|
||
|
|
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]
|