github.com/qlik-oss/gopherciser@v0.18.6/Dockerfile (about)

     1  # VERSION 0.2
     2  FROM alpine:latest 
     3  RUN apk --no-cache add ca-certificates
     4  
     5  WORKDIR /root/
     6  ARG PORT=9090
     7  ADD build/gopherciser /root/
     8  ADD artifacts/testrunner.sh /root/
     9  
    10  EXPOSE $PORT
    11  
    12  RUN sed -i -e 's/METRICPORT/'$PORT'/g' testrunner.sh
    13  
    14  ENTRYPOINT [ "./testrunner.sh" ]