clip-embedding / Dockerfile
nitinsurya's picture
Dockerfile setup and text embeddings integrated.
5c93d70
raw
history blame
230 Bytes
FROM python:3.11-slim
ARG GRADIO_SERVER_PORT=7860
ENV GRADIO_SERVER_PORT=${GRADIO_SERVER_PORT}
WORKDIR /app
COPY requirements.txt /app/
RUN pip install -r /app/requirements.txt
COPY app.py /app/
CMD ["python", "/app/app.py"]