generated from henryhamon/intersystems-iris-dev-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
37 lines (28 loc) · 1.58 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
ARG IMAGE=intersystemsdc/iris-community:preview
FROM $IMAGE AS builder
WORKDIR /home/irisowner/dev
RUN apt-get update && apt-get install -y nano
RUN pip install --upgrade --quiet langchain langchain-community langchain-openai fastembed spacy
RUN python3 -c 'from fastembed import TextEmbedding; embedding_model = TextEmbedding(model_name="BAAI/bge-small-en")'
RUN python3 -c 'from fastembed import TextEmbedding; embedding_model = TextEmbedding(model_name="jinaai/jina-embeddings-v2-small-en")'
RUN python3 -m spacy download en_core_web_sm
ARG TESTS=0
ARG MODULE="dc-sample"
ARG NAMESPACE="IRISAPP"
ENV IRISUSERNAME "_SYSTEM"
ENV IRISPASSWORD "SYS"
ENV IRISNAMESPACE $NAMESPACE
ENV PYTHON_PATH=/usr/irissys/bin/
ENV PATH "/usr/irissys/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/irisowner/bin"
COPY .iris_init /home/irisowner/.iris_init
RUN --mount=type=bind,src=.,dst=. \
pip3 install -r requirements.txt && \
iris start IRIS && \
iris session IRIS < iris.script && \
([ "$TESTS" -eq 0 ] || iris session iris -U "$NAMESPACE" "##class(%ZPM.PackageManager).Shell(\"test $MODULE -v -only\",1,1)") && \
iris stop IRIS quietly
FROM $IMAGE AS final
ADD --chown=${ISC_PACKAGE_MGRUSER}:${ISC_PACKAGE_IRISGROUP} https://github.com/grongierisc/iris-docker-multi-stage-script/releases/latest/download/copy-data.py /home/irisowner/dev/copy-data.py
RUN --mount=type=bind,source=/,target=/builder/root,from=builder \
cp -f /builder/root/usr/irissys/iris.cpf /usr/irissys/iris.cpf && \
python3 /home/irisowner/dev/copy-data.py -c /usr/irissys/iris.cpf -d /builder/root/