Spaces:
Sleeping
Sleeping
File size: 150 Bytes
d0a4f07 |
1 2 3 4 5 6 7 |
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"] |