code-kg-chat-display / Dockerfile
svjack's picture
Upload 3 files
f1e8369 verified
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir aiohttp httpx huggingface_hub
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 7860
ENTRYPOINT ["/entrypoint.sh"]