| FROM python:3.10-slim
|
|
|
| WORKDIR /app
|
|
|
|
|
| RUN apt-get update && apt-get install -y --no-install-recommends \
|
| build-essential \
|
| && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
| COPY fastapi_app/requirements.txt /app/
|
| RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
| COPY fastapi_app /app/
|
|
|
|
|
| RUN useradd -m -u 1000 appuser && chown -R appuser:appuser /app
|
| USER appuser
|
|
|
| EXPOSE 8000
|
|
|
|
|
| HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
|
| CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')" || exit 1
|
|
|
|
|
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"] |