github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/k8s/examples/coverage/Dockerfile.target (about)

     1  FROM public.ecr.aws/chainlink/goc:latest
     2  
     3  COPY . app/
     4  WORKDIR app/cmd
     5  RUN goc build -o service1 . --center http://goc:7777
     6  RUN chmod +x ../entrypoint.sh
     7  
     8  CMD ["../entrypoint.sh"]