repo-info / Dockerfile
jsulz's picture
jsulz HF staff
adding dockerfile
35c351a
raw
history blame
241 Bytes
FROM python:3.10-slim
WORKDIR /usr/src/app
COPY . .
RUN pip install --no-cache-dir requirements.txt
RUN pip install --no-cache-dir --no-deps gradio_huggingfacehub_search
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"
CMD ["python", "app.py"]