6 lines
187 B
Docker
6 lines
187 B
Docker
FROM python:3.13-slim
|
|
COPY healthcheck.py .
|
|
COPY requirements.txt .
|
|
RUN apt-get update && apt-get install -y docker.io
|
|
RUN pip install -r requirements.txt
|
|
CMD ["python", "healthcheck.py"] |