megamind-cortex / Dockerfile
Janady07's picture
Upload folder using huggingface_hub
b5f4a61 verified
raw
history blame contribute delete
270 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY brain.py /app/
EXPOSE 7860
HEALTHCHECK --interval=30s --timeout=10s CMD curl -sf http://localhost:7860/health || exit 1
CMD ["python3", "/app/brain.py"]