Files
GenAIExamples/CodeGen/Dockerfile
2025-03-24 09:17:12 +08:00

10 lines
202 B
Docker

# Copyright (C) 2024 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
ARG BASE_TAG=latest
FROM opea/comps-base:$BASE_TAG
COPY ./codegen.py $HOME/codegen.py
ENTRYPOINT ["python", "codegen.py"]