github.com/pachyderm/pachyderm@v1.13.4/etc/pipeline-build/python/Dockerfile (about)

     1  FROM python:3
     2  
     3  LABEL name="Pachyderm" \
     4        vendor="Pachyderm"
     5  
     6  COPY LICENSE /licenses
     7  
     8  RUN apt update && apt install -y libgl1-mesa-glx
     9  
    10  WORKDIR /app
    11  ADD etc/pipeline-build/python/build.sh .
    12  ADD etc/pipeline-build/python/run.sh .