prompt-search-engine / Dockerfile
supertskone's picture
Upload 14 files
fe51e27 verified
raw
history blame
201 Bytes
# Dockerfile
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "run:app", "--host", "0.0.0.0", "--port", "8000"]