File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ FROM ${LIGHTSPEED_RAG_CONTENT_IMAGE} as lightspeed-rag-content
7
7
8
8
FROM ${LIGHTSPEED_RAG_EMBEDDINGS_IMAGE} as lightspeed-rag-embeddings
9
9
10
- FROM registry.access.redhat.com/ubi9/ubi-minimal
10
+ FROM registry.access.redhat.com/ubi9/ubi-minimal AS production
11
11
12
12
ARG APP_ROOT=/app-root
13
13
@@ -32,9 +32,9 @@ COPY --from=lightspeed-rag-embeddings /rag/embeddings_model ./embeddings_model
32
32
33
33
# Add explicit files and directories
34
34
# (avoid accidental inclusion of local directories or env files or credentials)
35
- COPY runner.py pyproject.toml LICENSE README.md ./
35
+ COPY runner.py requirements.txt ./
36
36
37
- RUN pip3.11 install --no-cache-dir .
37
+ RUN pip3.11 install --no-cache-dir -r requirements.txt
38
38
39
39
COPY ols ./ols
40
40
You can’t perform that action at this time.
0 commit comments