Dapr is a portable runtime for building distributed applications across cloud and edge, combining event-driven architecture with workflow orchestration.
docker pull dapr/dapr:latest
docker run -d --name dapr --restart always dapr/dapr:latest
# current directory must be ./dist
FROM gcr.io/distroless/static:nonroot
ARG PKG_FILES
WORKDIR /
COPY /$PKG_FILES /
USER 65532:65532