github.com/solo-io/service-mesh-hub@v0.9.2/build/service-mesh-hub/Dockerfile (about)

     1  FROM alpine:3.11.6
     2  
     3  # installs public root certs
     4  # needed to establish trust with third party sources
     5  RUN apk upgrade --update-cache \
     6      && apk add ca-certificates \
     7      && rm -rf /var/cache/apk/*
     8  
     9  COPY service-mesh-hub-linux-amd64 /usr/local/bin/service-mesh-hub
    10  
    11  ENTRYPOINT ["/usr/local/bin/service-mesh-hub"]