Files
GenAIExamples/DocSum/Dockerfile
chen, suyue 2204fe8e36 Enable base image build in CI/CD (#1669)
Signed-off-by: chensuyue <suyue.chen@intel.com>
2025-03-19 09:21:51 +08:00

18 lines
416 B
Docker

# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
ARG IMAGE_REPO=opea
ARG BASE_TAG=latest
FROM $IMAGE_REPO/comps-base:$BASE_TAG
USER root
# FFmpeg needed for media processing
RUN apt-get update && \
apt-get install -y --no-install-recommends ffmpeg && \
apt-get clean && rm -rf /var/lib/apt/lists/*
USER user
COPY ./docsum.py $HOME/docsum.py
ENTRYPOINT ["python", "docsum.py"]