26 lines
693 B
Docker
26 lines
693 B
Docker
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
FROM python:3.11-slim
|
|
|
|
RUN apt-get update -y && apt-get install -y --no-install-recommends --fix-missing \
|
|
libgl1-mesa-glx \
|
|
libjemalloc-dev
|
|
|
|
RUN useradd -m -s /bin/bash user && \
|
|
mkdir -p /home/user && \
|
|
chown -R user /home/user/
|
|
|
|
USER user
|
|
|
|
COPY comps /home/user/comps
|
|
|
|
RUN pip install --no-cache-dir --upgrade pip setuptools && \
|
|
pip install --no-cache-dir -r /home/user/comps/embeddings/multimodal/multimodal_langchain/requirements.txt
|
|
|
|
ENV PYTHONPATH=$PYTHONPATH:/home/user
|
|
|
|
WORKDIR /home/user/comps/embeddings/multimodal/multimodal_langchain
|
|
|
|
ENTRYPOINT ["python", "mm_embedding_mmei.py"]
|