14 lines
332 B
Docker
14 lines
332 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY *.py ./
|
|
|
|
HEALTHCHECK --interval=60s --timeout=5s --start-period=15s \
|
|
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/health', timeout=3)" || exit 1
|
|
|
|
CMD ["python", "main.py"]
|