You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
650 B
29 lines
650 B
FROM python:3.11-slim |
|
|
|
ENV PYTHONUNBUFFERED=1 \ |
|
PIP_NO_CACHE_DIR=1 \ |
|
PIP_DISABLE_PIP_VERSION_CHECK=1 |
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \ |
|
build-essential \ |
|
libgl1 \ |
|
libglib2.0-0 \ |
|
libsm6 \ |
|
libxext6 \ |
|
libxrender1 \ |
|
curl \ |
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
WORKDIR /app |
|
|
|
COPY requirements.txt ./ |
|
RUN pip install -r requirements.txt |
|
|
|
COPY . . |
|
|
|
EXPOSE 8001 |
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=120s --retries=3 \ |
|
CMD curl -fsS http://localhost:8001/health || exit 1 |
|
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8001"]
|
|
|