Skip to content

Commit

Permalink
add poppler package to docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjoyo committed Apr 12, 2024
1 parent 67de993 commit 3524360
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ WORKDIR /app
COPY --from=build-jvm /app/target/feel-engine-wrapper-runner feel-wrapper
COPY ./bpm-ai-connectors-c8/bpm_ai_connectors_c8/ ./bpm_ai_connectors_c8/
COPY --from=build-python /app/.venv/lib/python${PYTHON_VERSION}/site-packages /usr/local/lib/python${PYTHON_VERSION}/site-packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends poppler-utils \
&& apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/*

# Run two processes: connector runtime + feel engine wrapper
COPY init.py .
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.prebuilt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ WORKDIR /app
COPY --chmod=755 ./feel-engine-wrapper/target/feel-engine-wrapper-runner feel-wrapper
COPY ./bpm-ai-connectors-c8/bpm_ai_connectors_c8/ ./bpm_ai_connectors_c8/
COPY --from=build-python /app/.venv/lib/python${PYTHON_VERSION}/site-packages /usr/local/lib/python${PYTHON_VERSION}/site-packages
RUN apt-get update \
&& apt-get install -y --no-install-recommends poppler-utils \
&& apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/*

# Run two processes: connector runtime + feel engine wrapper
COPY init.py .
Expand Down

0 comments on commit 3524360

Please sign in to comment.