🐳 dapr

Dapr is a portable runtime for building distributed applications across cloud and edge, combining event-driven architecture with workflow orchestration.

Docker Ready 26,020 stars
1. Pull Image docker pull dapr/dapr:latest
2. 1-Click Launch Command docker run -d --name dapr --restart always dapr/dapr:latest
docker/Dockerfile
# current directory must be ./dist

FROM gcr.io/distroless/static:nonroot
ARG PKG_FILES
WORKDIR /
COPY /$PKG_FILES /
USER 65532:65532