get.porter.sh/porter@v1.3.0/build/images/agent/Dockerfile (about)

     1  ARG PORTER_VERSION
     2  ARG REGISTRY
     3  FROM $REGISTRY/porter:$PORTER_VERSION
     4  
     5  # This is where files that need to be copied into /app/.porter/ should be mounted
     6  VOLUME /porter-config
     7  
     8  ENV PORTER_HOME /app/.porter
     9  COPY --chown=65532:0 --chmod=770 bin/dev/agent-linux-amd64 /app/.porter/agent
    10  
    11  USER 65532
    12  ENTRYPOINT ["/app/.porter/agent"]