# Generated by KFP.

FROM python:3.9-slim-buster

# Install Git and other dependencies
RUN apt-get update && apt-get install -y git

WORKDIR /usr/local/src/kfp/components
COPY runtime-requirements.txt runtime-requirements.txt
RUN pip install --no-cache-dir -r runtime-requirements.txt

RUN pip install --no-cache-dir kfp==2.0.1

COPY . .
