xinference / Dockerfile
zhengr's picture
Update Dockerfile
8865b8c verified
Raw
History Blame Contribute Delete
537 Bytes
FROM zhengr/xinference:nightly-main-cpu
# RUN pip install wetext
# Uninstall the full, empty unidic package
# RUN pip uninstall -y unidic
# Install the lightweight alternative
# RUN pip install unidic-lite
# EXPOSE 9997
# CMD ["xinference-local", "-H", "0.0.0.0"]
RUN pip install --no-cache-dir wetext
# Uninstall the full, empty unidic package
RUN pip uninstall -y unidic
# Install the lightweight alternative
RUN pip install --no-cache-dir unidic-lite
COPY start.sh /start.sh
RUN chmod +x /start.sh
EXPOSE 9997
CMD ["/start.sh"]