github.com/redhat-appstudio/e2e-tests@v0.0.0-20230619105049-9a422b2094d7/Dockerfile (about)

     1  FROM registry.ci.openshift.org/openshift/release:golang-1.19 AS builder
     2  
     3  WORKDIR /github.com/redhat-appstudio/e2e-tests
     4  USER root
     5  COPY . .
     6  RUN GOOS=linux make build
     7  
     8  FROM registry.access.redhat.com/ubi8/ubi-minimal:latest
     9  
    10  WORKDIR /root/
    11  COPY --from=builder /github.com/redhat-appstudio/e2e-tests/bin/e2e-appstudio ./
    12  COPY --from=builder /github.com/redhat-appstudio/e2e-tests/tests ./tests
    13  ENTRYPOINT ["/root/e2e-appstudio"]