File tree Expand file tree Collapse file tree
examples/pipelines/demo-question-answering Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM pathwaycom/pathway:latest
1+ ARG PATHWAY_SRC_IMAGE=pathwaycom/pathway:latest
2+
3+ FROM ${PATHWAY_SRC_IMAGE}
24
35WORKDIR /app
46
57RUN apt-get update \
6- && apt-get install -y python3-opencv tesseract-ocr-eng poppler-utils \
8+ && apt-get install -y python3-opencv tesseract-ocr-eng poppler-utils libreoffice \
79 && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
810
911COPY requirements.txt .
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ services:
22 app :
33 build :
44 context : .
5+ args :
6+ PATHWAY_SRC_IMAGE : ${PATHWAY_SRC_IMAGE:-pathwaycom/pathway:latest}
57 ports :
68 - " ${PATHWAY_PORT:-8000}:${PATHWAY_PORT:-8000}"
79 networks :
@@ -16,6 +18,8 @@ services:
1618 ui :
1719 build :
1820 context : ui
21+ args :
22+ PATHWAY_SRC_IMAGE : ${PATHWAY_SRC_IMAGE:-pathwaycom/pathway:latest}
1923 networks :
2024 - network
2125 environment :
You can’t perform that action at this time.
0 commit comments