semantic-catalogue / Dockerfile
cjber's picture
change requirements to lock
da50cb3
Raw
History Blame Contribute Delete
166 Bytes
FROM python:3.12
WORKDIR /
COPY . .
RUN pip install --no-cache-dir --upgrade -r requirements.lock
CMD ["fastapi", "run", "src/search_api/api.py", "--port", "7860"]