github.com/vchain-us/vcn@v0.9.11-0.20210921212052-a2484d23c0b3/docker/Dockerfile.python3 (about)

     1  FROM golang:1.16.6-buster as build
     2  WORKDIR /src
     3  COPY . .
     4  RUN GOOS=linux GOARCH=amd64 make static
     5  
     6  FROM python:3.9.6-slim-buster
     7  RUN pip install pipenv
     8  RUN pip install poetry
     9  COPY --from=build /src/vcn /bin/vcn
    10  
    11  ENTRYPOINT [ "/bin/vcn" ]