Files
IOT_application/Machine-Backend/Dockerfile
2025-10-14 18:38:53 +05:30

30 lines
571 B
Docker

FROM python:3.10-slim
WORKDIR /app
# Install dependencies
RUN apt-get update && apt-get install -y \
gcc \
default-libmysqlclient-dev \
pkg-config \
libssl-dev \
libffi-dev \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY . .
# Production environment
ENV FLASK_ENV=production
ENV FLASK_APP=run.py
ENV FLASK_RUN_HOST=0.0.0.0
ENV FLASK_RUN_PORT=5000
EXPOSE 5000
# Use Gunicorn
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "run:app"]