| ADD alpine-minirootfs-3.23.2-aarch64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk --no-cache add ca-certificates tzdata # buildkit |
| RUN /bin/sh -c adduser -D -s /bin/sh aether # buildkit |
| WORKDIR /app |
| COPY /app/cmd/aether-runtime/aether-runtime . # buildkit |
| RUN /bin/sh -c chown aether:aether /app/aether-runtime # buildkit |
| USER aether |
| EXPOSE [8080/tcp] |
| HEALTHCHECK &{["CMD-SHELL" "wget --no-verbose --tries=1 --spider http://localhost:8080/health || exit 1"] "30s" "3s" "5s" "0s" '\x03'} |
| CMD ["./aether-runtime" "--port=8080"] |