Repo | Description |
---|---|
Dapr | The main repository that you are currently in. Contains the Dapr runtime code and overview documentation. |
CLI | The Dapr CLI allows you to setup Dapr on your local dev machine or on a Kubernetes cluster, provides debugging support, launches and manages Dapr instances. |
Docs | The documentation for Dapr. |
Quickstarts | This repository contains a series of simple code samples that highlight the main Dapr capabilities. |
Samples | This repository holds community maintained samples for various Dapr use cases. |
Components-contrib | The purpose of components contrib is to provide open, community driven reusable components for building distributed applications. |
Dashboard | General purpose dashboard for Dapr |
Go-sdk | Dapr SDK for Go |
Platform | Link |
---|---|
💬 Instant Message Chat (preferred) | |
📧 Mailing List | https://groups.google.com/forum/#!forum/dapr-dev |
@daprdev |
knox / Distroless-11.sh
0 likes
0 forks
1 files
Last active
1 | $ docker run --entrypoint=sh -ti my_debug_image |
2 | |
3 | /app # ls |
4 | BUILD Dockerfile hello.py |
knox / Distroless-10.sh
0 likes
0 forks
1 files
Last active
1 | $ docker build -t my_debug_image . |
knox / Distroless-9.Dockerfile
0 likes
0 forks
1 files
Last active
1 | FROM gcr.io/distroless/python3-debian12:debug |
2 | COPY . /app |
3 | WORKDIR /app |
4 | CMD ["hello.py", "/etc"] |
knox / Distroless-8.sh
0 likes
0 forks
1 files
Last active
1 | cd examples/python3/ |
knox / Distroless-7.sh
0 likes
0 forks
1 files
Last active
1 | npm install # Install express and its transitive dependencies |
2 | docker build -t myexpressapp . # Normal build command |
3 | docker run -p 3000:3000 -t myexpressapp |
knox / Distroless-6.sh
0 likes
0 forks
1 files
Last active
1 | docker build -t myapp . |
2 | docker run -t myapp |
knox / Distroless-5.dockerfile
0 likes
0 forks
1 files
Last active
1 | # Start by building the application. |
2 | FROM golang:1.18 as build |
3 | |
4 | WORKDIR /go/src/app |
5 | COPY . . |
6 | |
7 | RUN go mod download |
8 | RUN CGO_ENABLED=0 go build -o /go/bin/app |
9 | |
10 | # Now copy it into our base image. |
knox / Distroless-4.sh
0 likes
0 forks
1 files
Last active
1 | ENTRYPOINT "myapp" |
Newer
Older