web-search-api / Dockerfile
Hansimov's picture
:gem: [Feature] Sync to Hugginface space, and run in docker
d0a4f07
raw history blame
No virus
150 Bytes
FROM python:3.11-slim
WORKDIR $HOME/app
COPY . .
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 21111
CMD ["python", "-m", "apis.search_api"]