mirror of
https://github.com/placeholder-soft/chroma.git
synced 2026-01-12 17:02:54 +08:00
18 lines
381 B
Docker
18 lines
381 B
Docker
FROM python:3.10
|
|
|
|
#RUN apt-get update -qq
|
|
#RUN apt-get install python3.10 python3-pip -y --no-install-recommends && rm -rf /var/lib/apt/lists_/*
|
|
|
|
WORKDIR /chroma
|
|
|
|
COPY ./requirements.txt requirements.txt
|
|
|
|
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
|
COPY ./bin/docker_entrypoint.sh /docker_entrypoint.sh
|
|
COPY ./ /chroma
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["/docker_entrypoint.sh"]
|